dont blow up upon failing to submit network monitor results

This commit is contained in:
Jędrzej Stuczyński
2024-11-22 15:10:26 +00:00
parent fa462b282d
commit 49da178f80
+1 -4
View File
@@ -95,10 +95,7 @@ impl<R: MessageReceiver + Send> Monitor<R> {
)
.await
{
error!("Failed to submit monitor run information to the database - {err}",);
// TODO: slightly more graceful shutdown here
process::exit(1);
error!("Failed to submit monitor run information to the database: {err}",);
}
}