We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 71d643d commit 00b5b71Copy full SHA for 00b5b71
src/sync.rs
@@ -86,7 +86,7 @@ pub async fn handler(mut cancel_rx: oneshot::Receiver<()>) -> anyhow::Result<()>
86
remote_sync_inbox.send(()).unwrap_or(());
87
localsync_inbox.send(()).unwrap_or(());
88
if let Err(e) = localsync_handler.await {
89
- error!("Error joining remote_sync_handler: {e:?}");
+ error!("Error joining localsync_handler: {e:?}");
90
}
91
if let Err(e) = remote_sync_handler.await {
92
error!("Error joining remote_sync_handler: {e:?}");
0 commit comments