@@ -1212,7 +1212,7 @@ def deleteComponent(self, instance_name=None, comp=None):
12121212
12131213 if OpenRTM_aist .toBool (self ._config .getProperty ("manager.shutdown_on_nortcs" ),
12141214 "YES" , "NO" , True ) and \
1215- not OpenRTM_aist .toBool (self ._config .getProperty ("manager.is_master " ),
1215+ not OpenRTM_aist .toBool (self ._config .getProperty ("manager.is_main " ),
12161216 "YES" , "NO" , False ):
12171217 comps = self .getComponents ()
12181218 if not comps :
@@ -1423,7 +1423,7 @@ def initManager(self, argv):
14231423
14241424 if OpenRTM_aist .toBool (self ._config .getProperty ("manager.shutdown_auto" ),
14251425 "YES" , "NO" , True ) and \
1426- not OpenRTM_aist .toBool (self ._config .getProperty ("manager.is_master " ),
1426+ not OpenRTM_aist .toBool (self ._config .getProperty ("manager.is_main " ),
14271427 "YES" , "NO" , False ) and \
14281428 self ._needsTimer :
14291429 tm = OpenRTM_aist .TimeValue (10 , 0 )
@@ -1826,14 +1826,14 @@ def createORBEndpoints(self):
18261826 "corba.endpoint: %s" ,
18271827 self ._config .getProperty ("corba.endpoint" ))
18281828
1829- # If this process has master manager,
1830- # master manager's endpoint inserted at the top of endpoints
1831- self ._rtcout .RTC_DEBUG ("manager.is_master : %s" ,
1832- self ._config .getProperty ("manager.is_master " ))
1829+ # If this process has main manager,
1830+ # main manager's endpoint inserted at the top of endpoints
1831+ self ._rtcout .RTC_DEBUG ("manager.is_main : %s" ,
1832+ self ._config .getProperty ("manager.is_main " ))
18331833
18341834 if OpenRTM_aist .toBool (self ._config .getProperty (
1835- "manager.is_master " ), "YES" , "NO" , False ):
1836- mm = self ._config .getProperty ("corba.master_manager " , ":2810" )
1835+ "manager.is_main " ), "YES" , "NO" , False ):
1836+ mm = self ._config .getProperty ("corba.main_manager " , ":2810" )
18371837 mmm = [s .strip () for s in mm .split (":" )]
18381838 if len (mmm ) == 2 :
18391839 endpoints .insert (0 , ":" + mmm [1 ])
@@ -2329,26 +2329,26 @@ def initManagerServant(self):
23292329 prop = self ._config .getNode ("manager" )
23302330 names = OpenRTM_aist .split (prop .getProperty ("naming_formats" ), "," )
23312331
2332- if OpenRTM_aist .toBool (prop .getProperty ("is_master " ),
2332+ if OpenRTM_aist .toBool (prop .getProperty ("is_main " ),
23332333 "YES" , "NO" , True ):
23342334 for name in names :
23352335 mgr_name = self .formatString (name , prop )
23362336 self ._namingManager .bindManagerObject (
23372337 mgr_name , self ._mgrservant )
23382338
2339- if OpenRTM_aist .toBool (self ._config .getProperty ("corba.update_master_manager .enable" ),
2339+ if OpenRTM_aist .toBool (self ._config .getProperty ("corba.update_main_manager .enable" ),
23402340 "YES" , "NO" , True ) and \
2341- not OpenRTM_aist .toBool (self ._config .getProperty ("manager.is_master " ),
2341+ not OpenRTM_aist .toBool (self ._config .getProperty ("manager.is_main " ),
23422342 "YES" , "NO" , False ) and \
23432343 self ._needsTimer :
23442344 tm = OpenRTM_aist .TimeValue (10 , 0 )
2345- if self ._config .findNode ("corba.update_master_manager .interval" ):
2345+ if self ._config .findNode ("corba.update_main_manager .interval" ):
23462346 duration = float (self ._config .getProperty (
2347- "corba.update_master_manager .interval" ))
2347+ "corba.update_main_manager .interval" ))
23482348 if duration :
23492349 tm .set_time (duration )
23502350
2351- self .addTask (self ._mgrservant .updateMasterManager , tm )
2351+ self .addTask (self ._mgrservant .updateMainManager , tm )
23522352
23532353 otherref = None
23542354
0 commit comments