Browse Source

celery control command was not receiving replies

Ask Solem 11 years ago
parent
commit
041cb94362
1 changed files with 1 additions and 1 deletions
  1. 1 1
      celery/bin/celery.py

+ 1 - 1
celery/bin/celery.py

@@ -399,7 +399,7 @@ class control(_RemoteControl):
     }
 
     def call(self, method, *args, **options):
-        return getattr(self.app.control, method)(*args, retry=True, **options)
+        return getattr(self.app.control, method)(*args, reply=True, **options)
 
     def pool_grow(self, method, n=1, **kwargs):
         """[N=1]"""