Ejemplo n.º 1
0
 def start(self):
     # NOTE(suro-patz): The parent class has created a threadgroup, already
     if CONF.periodic_enable:
         periodic.setup(CONF, self.tg)
     servicegroup.setup(CONF, self.binary, self.tg)
     self._server.start()
Ejemplo n.º 2
0
 def start(self):
     # NOTE(suro-patz): The parent class has created a threadgroup, already
     if CONF.periodic_enable:
         periodic.setup(CONF, self.tg)
     servicegroup.setup(CONF, self.binary, self.tg)
     self._server.start()
Ejemplo n.º 3
0
 def create_periodic_tasks(self):
     if CONF.periodic_enable:
         periodic.setup(CONF, self.tg)
     servicegroup.setup(CONF, self.binary, self.tg)
Ejemplo n.º 4
0
 def start(self):
     if CONF.periodic_enable:
         self.tg = periodic.setup(CONF)
     self._server.start()