Unverified Commit 54a6db82 authored by Nick Hill's avatar Nick Hill Committed by GitHub
Browse files

[BugFix] Fix "DP Coordinator receives unexpected..." messages (#37008)


Signed-off-by: default avatarNick Hill <nickhill123@gmail.com>
parent 9efc4db9
...@@ -248,9 +248,9 @@ class DPCoordinatorProc: ...@@ -248,9 +248,9 @@ class DPCoordinatorProc:
# Subscription message, on the other hand, is sent # Subscription message, on the other hand, is sent
# by each engine during initialization # by each engine during initialization
publish_back.send(b"READY") publish_back.send(b"READY")
else: elif buffer != b"\x00":
logger.error( logger.error(
"DP Coordinator receives unexpected message from engines" "DP Coordinator received unexpected message from engines"
) )
if publish_front in events: if publish_front in events:
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment