Browse Source

Pool semaphore should not be verbose.

Ask Solem 14 years ago
parent
commit
33773e2b3c
1 changed files with 1 additions and 1 deletions
  1. 1 1
      celery/concurrency/processes/pool.py

+ 1 - 1
celery/concurrency/processes/pool.py

@@ -465,7 +465,7 @@ class Pool(object):
         self._worker_handler = self.Supervisor(self)
         self._worker_handler.start()
 
-        self._putlock = threading.BoundedSemaphore(self._processes, verbose=True)
+        self._putlock = threading.BoundedSemaphore(self._processes)
         self._task_handler = self.TaskHandler(self._taskqueue,
                                               self._quick_put,
                                               self._outqueue,