Explorar o código

[mingle] Fixes UnboundLocalError. Closes #1370

Ask Solem %!s(int64=12) %!d(string=hai) anos
pai
achega
29fa5ee845
Modificáronse 1 ficheiros con 3 adicións e 2 borrados
  1. 3 2
      celery/worker/consumer.py

+ 3 - 2
celery/worker/consumer.py

@@ -521,8 +521,9 @@ class Mingle(bootsteps.StartStopStep):
                     other_clock, other_revoked = MINGLE_GET_FIELDS(reply)
                 except KeyError:  # reply from pre-3.1 worker
                     pass
-                c.app.clock.adjust(other_clock)
-                revoked.update(other_revoked)
+                else:
+                    c.app.clock.adjust(other_clock)
+                    revoked.update(other_revoked)
             info('mingle: synced with %s', ', '.join(replies))
         else:
             info('mingle: no one here')