Skip to content

Commit

Permalink
version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
ashutshkumr committed Jan 29, 2021
1 parent a4ff92b commit 7e4a0b4
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,8 @@ ts = api.transmit_state()
ts.state = ts.START
api.set_transmit_state(ts)
# wait for flow metrics to be as expected
metrics = lambda: api.get_flow_metrics(api.flow_metrics_request())
while not all([m.frames_tx == 10000 == m.frames_rx for m in metrics()]):
continue
while True:
metrics = api.get_flow_metrics(api.flow_metrics_request())
if all([m.frames_tx == 10000 == m.frames_rx for m in metrics]):
break
```
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.1.4
0.1.5
Empty file modified scripts/setup-env.sh
100644 → 100755
Empty file.

0 comments on commit 7e4a0b4

Please sign in to comment.