We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This issue is identified while integrating with Gosnappi HTTP Server implementation. https://github.com/open-traffic-generator/snappi/tree/gosnappi_server_tmp/gosnappi
If we want to deep compare instances of same objects [e.g. comparing Metrics() of 2 flows with identical content],
reflect.DeepEqual(f1.Metrics().Msg(), f2.Metrics().Msg())
the comparison fails.
Although, just before the comparison, if we just add the following lines, comparison succeeds,
f1.Metrics().ToJson() f2.Metrics().ToJson()
which leads to a thought that,
The text was updated successfully, but these errors were encountered:
alakendu
ashutshkumr
No branches or pull requests
This issue is identified while integrating with Gosnappi HTTP Server implementation.
https://github.com/open-traffic-generator/snappi/tree/gosnappi_server_tmp/gosnappi
If we want to deep compare instances of same objects [e.g. comparing Metrics() of 2 flows with identical content],
the comparison fails.
Although, just before the comparison, if we just add the following lines, comparison succeeds,
which leads to a thought that,
The text was updated successfully, but these errors were encountered: