瀏覽代碼

Retry if the heartbeat connection dies (#5066)

Otherwise it will keep trying to write to the broken connection and
memory will leak because the event dispatcher will keep appending
the message to _outbound_buffer.
Raf Geens 6 年之前
父節點
當前提交
5f1b39a8f7
共有 1 個文件被更改,包括 1 次插入0 次删除
  1. 1 0
      celery/worker/heartbeat.py

+ 1 - 0
celery/worker/heartbeat.py

@@ -46,6 +46,7 @@ class Heart(object):
                                  active=len(active_requests),
                                  processed=all_total_count[0],
                                  loadavg=load_average(),
+                                 retry=True,
                                  **SOFTWARE_INFO)
 
     def start(self):