Browse Source

Fix: send `StopReply` instead of `SpawnReply` after receiving stop message in daemon

tags/v0.2.0-candidate
Philipp Oppermann 2 years ago
parent
commit
2ffae835d5
Failed to extract signature
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      binaries/daemon/src/lib.rs

+ 1
- 1
binaries/daemon/src/lib.rs View File

@@ -301,7 +301,7 @@ impl Daemon {
}
Result::<(), eyre::Report>::Ok(())
};
let reply = DaemonCoordinatorReply::SpawnResult(
let reply = DaemonCoordinatorReply::StopResult(
stop.await.map_err(|err| format!("{err:?}")),
);
(reply, RunStatus::Continue)


Loading…
Cancel
Save