Comment 1 for bug 1401042

Revision history for this message
Miguel Angel Ajo (mangelajo) wrote :

A simple change:

- for service_id in self._process_managers:
+for service_id in self._process_managers.keys():

would fix the issue, as the later:

pm = self._process_managers.get(service_id) // if pm...

will just skip a process manager that has been disabled.