Skip to content
This repository was archived by the owner on Aug 3, 2025. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/abci/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ def run(self) -> None:
log.info(" ~ running app - press CTRL-C to stop ~")
loop.run_until_complete(self._start())
except:
log.warn(" ... shutting down")
log.warning(" ... shutting down")
if on_windows:
loop.run_until_complete(_stop())
finally:
Expand Down Expand Up @@ -202,7 +202,7 @@ async def _stop() -> None:
Clean up all async tasks. Called on a signal or a connection closed by
tendermint
"""
log.warn(" ... received exit signal")
log.warning(" ... received exit signal")
tasks = [t for t in asyncio.all_tasks() if t is not asyncio.current_task()]
for task in tasks:
task.cancel()
Expand Down