Remove SupervisorMixin from ProcessManagingEventHandler

This commit is contained in:
Kristóf Tóth 2018-02-21 14:43:48 +01:00
parent 3506f5abb4
commit 387d07bc4a

View File

@ -13,7 +13,7 @@ class ProcessManager(SupervisorMixin):
self.commands[command]()
class ProcessManagingEventHandler(EventHandlerBase, SupervisorMixin):
class ProcessManagingEventHandler(EventHandlerBase):
def __init__(self, anchor, supervisor_process_name):
super().__init__(anchor)
self.processmanager = ProcessManager(supervisor_process_name)