fix(#2003): drop issue tag from inline comment (tracker-tag lint)

This commit is contained in:
damocles 2026-06-26 17:21:30 +02:00 committed by mara
commit 916c0b11c5

View file

@ -198,10 +198,10 @@ pub async fn ensure_root_agent(coord: &Arc<Coordinator>) -> Result<()> {
// The root/manager is required infrastructure — it must be running // The root/manager is required infrastructure — it must be running
// after every hive-c0re (re)start. A previous bring-up can leave it // after every hive-c0re (re)start. A previous bring-up can leave it
// *created but stopped* (e.g. a first-start failure on a fresh // *created but stopped* (e.g. a first-start failure on a fresh
// install, #2003): the startup sweep's rebuild only restarts a // install): the startup sweep's rebuild only restarts a container
// container that was already running, so without this it stays down // that was already running, so without this it stays down until a
// until a manual `nixos-container start`. Unlike sub-agents there is // manual `nixos-container start`. Unlike sub-agents there is no
// no "deliberately stopped root" intent to honour, so start it // "deliberately stopped root" intent to honour, so start it
// unconditionally when it isn't running. // unconditionally when it isn't running.
if !lifecycle::is_running(MANAGER_NAME).await { if !lifecycle::is_running(MANAGER_NAME).await {
tracing::info!("manager container present but not running — starting"); tracing::info!("manager container present but not running — starting");