From 71ffb0028e017cfd041b37668dbb15e6784e28b1 Mon Sep 17 00:00:00 2001 From: Rich Lane <rlane@bigswitch.com> Date: Mon, 1 Jul 2013 16:05:52 -0700 Subject: [PATCH] IVSSwitch: remove namespace warnings IVS works fine using --innamespace. --- mininet/node.py | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/mininet/node.py b/mininet/node.py index 71ac9a0b..3cd8a1f2 100644 --- a/mininet/node.py +++ b/mininet/node.py @@ -1019,17 +1019,11 @@ def stop( self ): class IVSSwitch(Switch): - """IVS virtual switch - Currently only works in the root namespace. - """ + """IVS virtual switch""" def __init__( self, name, **kwargs ): Switch.__init__( self, name, **kwargs ) self.process = None - if self.inNamespace: - error( "IVSSwitch currently only works" - " in the root namespace.\n" ) - exit( 1 ) @classmethod def setup( cls ): -- GitLab