service
service
¶
Shared helpers for the two long-lived asyncio entry points.
The hub (terok_clearance.serve) and the desktop notifier
(terok-clearance-notifier in the terok package) both need the
same two pieces of systemd-unit plumbing: log to stderr so journald
picks it up, and block on SIGINT / SIGTERM until the operator
or systemd tears us down. Keeping both here means one place to
change if we ever want structured logging or a different shutdown
signal.
configure_logging(level=logging.INFO)
¶
Send INFO-level logs to stderr so journald / systemd pick them up.
Source code in src/terok_clearance/runtime/service.py
wait_for_shutdown_signal()
async
¶
Block the current task until SIGINT or SIGTERM arrives.