We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c3c98a5 commit b94faedCopy full SHA for b94faed
celery/concurrency/workhorse.py
@@ -190,7 +190,7 @@ def on_sigchld(self):
190
elif os.WIFSTOPPED(exit_code):
191
pending[pid] = os.WSTOPSIG(exit_code)
192
193
- for pid, exit_code in pending.iteritems():
+ for pid, exit_code in pending.items():
194
self.on_worker_exit(pid, exit_code)
195
196
def on_worker_exit(self, pid, exit_code):
0 commit comments