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 693defd commit 64f2ec2Copy full SHA for 64f2ec2
1 file changed
asyncgit/src/status.rs
@@ -138,9 +138,10 @@ impl AsyncStatus {
138
arc_generation.fetch_add(1, Ordering::Relaxed);
139
arc_pending.fetch_sub(1, Ordering::Relaxed);
140
141
- sender
142
- .send(AsyncGitNotification::Status)
143
- .expect("error sending status");
+ if let Err(e) = sender.send(AsyncGitNotification::Status)
+ {
+ log::error!("send status error: {e}");
144
+ }
145
});
146
147
Ok(None)
0 commit comments