Skip to content

Commit

Permalink
Merge branch '23.12LTS' into response-entity
Browse files Browse the repository at this point in the history
  • Loading branch information
ahopkins committed Jan 9, 2024
2 parents 0e062e0 + 57d44f2 commit 84987c4
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
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
1 change: 0 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,6 @@ def str_to_bool(val: str) -> bool:
uvloop = "uvloop>=0.15.0" + env_dependency
types_ujson = "types-ujson" + env_dependency
requirements = [
# "sanic-routing>=23.6.0",
"sanic-routing>=23.12.0",
"httptools>=0.0.10",
uvloop,
Expand Down

0 comments on commit 84987c4

Please sign in to comment.