Skip to content

Commit

Permalink
dont blow up upon failing to submit network monitor results
Browse files Browse the repository at this point in the history
  • Loading branch information
jstuczyn committed Nov 22, 2024
1 parent fa462b2 commit 49da178
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions nym-api/src/network_monitor/monitor/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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}",);
}
}

Expand Down

0 comments on commit 49da178

Please sign in to comment.