build=False is unnecessary if topo=None, which is the default

This commit is contained in:
Bob Lantz
2014-03-16 05:20:43 -07:00
parent 8f5f38c6a5
commit 0fe73a6780
+1 -1
View File
@@ -19,7 +19,7 @@ from mininet.log import setLogLevel
def multiControllerNet():
"Create a network from semi-scratch with multiple controllers."
net = Mininet( controller=Controller, switch=OVSSwitch, build=False )
net = Mininet( controller=Controller, switch=OVSSwitch )
print "*** Creating (reference) controllers"
c1 = net.addController( 'c1', port=6633 )