Skip to content

Commit

Permalink
Fix broken multiplexer manage (#2895)
Browse files Browse the repository at this point in the history
  • Loading branch information
ahopkins authored Jan 9, 2024
1 parent 3d85a1c commit 599f746
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion sanic/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "23.12.0"
__version__ = "23.12.1"
2 changes: 1 addition & 1 deletion sanic/worker/manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -452,7 +452,7 @@ def _poll_monitor(self) -> Optional[MonitorCycle]:
elif message == "__TERMINATE__":
self._handle_terminate()
return MonitorCycle.BREAK
elif isinstance(message, tuple) and len(message) == 7:
elif isinstance(message, tuple) and len(message) == 8:
self._handle_manage(*message) # type: ignore
return MonitorCycle.CONTINUE
elif not isinstance(message, str):
Expand Down

0 comments on commit 599f746

Please sign in to comment.