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
In this section: https://github.com/open-traffic-generator/athena/blob/dev-mon-ist/docs/hello-snappi.md#start-traffic you show this snippet:
# start transmitting configured flows ts = api.transmit_state() ts.state = ts.START api.set_transmit_state(ts)
This is a lot of lines of code to start the traffic. Is there a more compact way? For example:
api.set_transmit_state(api.transmit_state(ts.START))
This is still pedantic. How about something even easier, e.g.
api.transmit_state.start()
The same comment goes for stopping traffic, and starting capture.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In this section: https://github.com/open-traffic-generator/athena/blob/dev-mon-ist/docs/hello-snappi.md#start-traffic
you show this snippet:
This is a lot of lines of code to start the traffic. Is there a more compact way? For example:
This is still pedantic. How about something even easier, e.g.
The same comment goes for stopping traffic, and starting capture.
The text was updated successfully, but these errors were encountered: