Skip to content
Snippets Groups Projects
Commit 5791f32a authored by Bob Lantz's avatar Bob Lantz
Browse files

Fix --controller=remote

parent ffd089ea
No related branches found
No related tags found
No related merge requests found
...@@ -201,7 +201,7 @@ class MininetRunner( object ): ...@@ -201,7 +201,7 @@ class MininetRunner( object ):
host = HOSTS[ self.options.host ] host = HOSTS[ self.options.host ]
controller = CONTROLLERS[ self.options.controller ] controller = CONTROLLERS[ self.options.controller ]
if self.options.controller == 'remote': if self.options.controller == 'remote':
controller = lambda a, b: RemoteController( a, b, controller = lambda a: RemoteController( a,
defaultIP=self.options.ip, defaultIP=self.options.ip,
port=self.options.port ) port=self.options.port )
......
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