Fix ipBase option misspelling
It's arguable that maybe might want to support 'ipbase' as well since it's used in --ipbase and it's easier to type. However, ipBase is the spelling used in Mininet, so we should be consistent. Change-Id: I2f61df0d2d09abf652c5f06ef9c734a55159a7de
Showing
1 changed file
with
1 additions
and
1 deletions
... | @@ -277,7 +277,7 @@ class ONOSCluster( Controller ): | ... | @@ -277,7 +277,7 @@ class ONOSCluster( Controller ): |
277 | args = ( 1, ) | 277 | args = ( 1, ) |
278 | if not isinstance( topo, Topo ): | 278 | if not isinstance( topo, Topo ): |
279 | topo = RenamedTopo( topo, *args, hnew='onos', **kwargs ) | 279 | topo = RenamedTopo( topo, *args, hnew='onos', **kwargs ) |
280 | - ipBase = kwargs.pop( 'ipbase', '192.168.123.0/24' ) | 280 | + ipBase = kwargs.pop( 'ipBase', '192.168.123.0/24' ) |
281 | super( ONOSCluster, self ).__init__( name, inNamespace=False ) | 281 | super( ONOSCluster, self ).__init__( name, inNamespace=False ) |
282 | fixIPTables() | 282 | fixIPTables() |
283 | self.env = initONOSEnv() | 283 | self.env = initONOSEnv() | ... | ... |
-
Please register or login to post a comment