From 336958352a5d01f916bde2c71e11cc6cae9219ab Mon Sep 17 00:00:00 2001 From: Bob Lantz Date: Tue, 26 Jan 2016 13:59:39 -0800 Subject: [PATCH] Only use 80 hosts for linearbandwidth.py for now In the long run, we should debug the performance issues with kvm and Ubuntu 15. For now, however, we're relaxing the constraints. Closes #594 --- examples/linearbandwidth.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/linearbandwidth.py b/examples/linearbandwidth.py index 995bfa1..9ccfaee 100755 --- a/examples/linearbandwidth.py +++ b/examples/linearbandwidth.py @@ -121,6 +121,6 @@ def linearBandwidthTest( lengths ): if __name__ == '__main__': lg.setLogLevel( 'info' ) - sizes = [ 1, 10, 20, 40, 60, 80, 100 ] + sizes = [ 1, 10, 20, 40, 60, 80 ] print "*** Running linearBandwidthTest", sizes linearBandwidthTest( sizes )