Fix issue where plugins would try to be stopped after they have been
deregistered
This commit is contained in:
parent
a93bbc35a1
commit
52ea19249c
|
@ -261,7 +261,8 @@ class ComponentRegistry(object):
|
|||
deferreds = []
|
||||
|
||||
for name in names:
|
||||
deferreds.append(self.components[name]._component_stop())
|
||||
if name in self.components:
|
||||
deferreds.append(self.components[name]._component_stop())
|
||||
|
||||
return DeferredList(deferreds)
|
||||
|
||||
|
|
Loading…
Reference in New Issue