Skip to content
Snippets Groups Projects
Commit 9ff453a5 authored by Brian O'Connor's avatar Brian O'Connor
Browse files

Changed iperf -sD to iperf -s &

fixes #190
parent 4e6b03d6
No related branches found
No related tags found
No related merge requests found
......@@ -410,7 +410,8 @@ def iperf( self ):
count = len( consoles )
self.setOutputHook( self.updateGraph )
for console in consoles:
console.node.cmd( 'iperf -sD' )
#sometimes iperf -sD doesn't return, so we run it in the background instead
console.node.cmd( 'iperf -s &' )
i = 0
for console in consoles:
i = ( i + 1 ) % count
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment