Skip to content

Commit

Permalink
changes marker on debug
Browse files Browse the repository at this point in the history
  • Loading branch information
David Erb committed May 10, 2023
1 parent 3b7ea18 commit 88f12d9
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/rockingester_lib/collectors/context.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,13 +75,11 @@ async def aexit(self) -> None:
if self.server is not None:
if self.context_specification.get("start_as") == "process":
logger.info(
"[NEWSHUT] in context exit, sending shutdown to client process"
"[DISSHU] in context exit, sending shutdown to client process"
)
# Put in request to shutdown the server.
await self.server.client_shutdown()
logger.info(
"[NEWSHUT] in context exit, sent shutdown to client process"
)
logger.info("[DISSHU] in context exit, sent shutdown to client process")

if self.context_specification.get("start_as") == "coro":
await self.server.direct_shutdown()
Expand Down

0 comments on commit 88f12d9

Please sign in to comment.