Ver código fonte

Avoid pid value collision in test configuration.

'bar' entry already use this pid.
Grégory 14 anos atrás
pai
commit
93b3416fbe
1 arquivos alterados com 1 adições e 1 exclusões
  1. 1 1
      src/supervisor/tests/base.py

+ 1 - 1
src/supervisor/tests/base.py

@@ -682,7 +682,7 @@ class DummySupervisorRPCNamespace:
         {
         'name':'baz_01',
         'group':'baz',
-        'pid':12,
+        'pid':13,
         'state':ProcessStates.STOPPED,
         'statename':'STOPPED',
         'start':_NOW - 100,