Skip to content

Commit

Permalink
Add --fq-rate arg to iperf3 invocation. #1483
Browse files Browse the repository at this point in the history
  • Loading branch information
mfeit-internet2 committed Nov 4, 2024
1 parent ffa25f6 commit 742f6fc
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions pscheduler-tool-iperf3/iperf3/run
Original file line number Diff line number Diff line change
Expand Up @@ -218,6 +218,10 @@ def run_client():
iperf3_args.append('-b')
iperf3_args.append(test_spec['bandwidth'])

if 'fq-rate' in test_spec and test_spec['fq-rate'] != None:
iperf3_args.append('--fq-rate')
iperf3_args.append(test_spec['fq-rate'])

if test_spec.get('udp', False):
iperf3_args.append('-u')

Expand Down

0 comments on commit 742f6fc

Please sign in to comment.