Alternative fix for re-enabling plugin issue
This commit is contained in:
parent
6d2e88eeee
commit
9053280e14
|
@ -205,6 +205,18 @@ class Component(object):
|
||||||
d.addCallback(on_stop)
|
d.addCallback(on_stop)
|
||||||
return d
|
return d
|
||||||
|
|
||||||
|
def start(self):
|
||||||
|
pass
|
||||||
|
|
||||||
|
def stop(self):
|
||||||
|
pass
|
||||||
|
|
||||||
|
def update(self):
|
||||||
|
pass
|
||||||
|
|
||||||
|
def shutdown(self):
|
||||||
|
pass
|
||||||
|
|
||||||
class ComponentRegistry(object):
|
class ComponentRegistry(object):
|
||||||
"""
|
"""
|
||||||
The ComponentRegistry holds a list of currently registered
|
The ComponentRegistry holds a list of currently registered
|
||||||
|
|
Loading…
Reference in New Issue