Example #1
0
 def do_check(self):
     self.debug('running PyGTK/PyGST and configuration checks')
     from flumotion.component.producers import checks
     d1 = checks.checkTicket347()
     d2 = checks.checkTicket348()
     dl = defer.DeferredList([d1, d2])
     dl.addCallback(self._checkCallback)
     return dl
Example #2
0
 def do_check(self):
     self.debug('running PyGTK/PyGST checks')
     from flumotion.component.producers import checks
     d1 = checks.checkTicket347()
     d2 = checks.checkTicket348()
     dl = defer.DeferredList([d1, d2])
     dl.addCallback(self._checkCallback)
     return dl
Example #3
0
 def do_check(self):
     self.debug('running PyGTK/PyGST and configuration checks')
     from flumotion.component.producers import checks
     d1 = checks.checkTicket347()
     d2 = checks.checkTicket348()
     l = self._do_extra_checks()
     l.extend([d1, d2])
     dl = defer.DeferredList(l)
     dl.addCallback(self._checkCallback)
     return dl