Browse Source

Match the signature used in the rest of the code.

Ionel Cristian Mărieș 11 years ago
parent
commit
e58d4bd6c9
1 changed files with 1 additions and 1 deletions
  1. 1 1
      celery/concurrency/base.py

+ 1 - 1
celery/concurrency/base.py

@@ -111,7 +111,7 @@ class BasePool(object):
     def maintain_pool(self, *args, **kwargs):
         pass
 
-    def terminate_job(self, pid):
+    def terminate_job(self, pid, signal=None):
         raise NotImplementedError(
             '{0} does not implement kill_job'.format(type(self)))