Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
wkazmierczak committed Jan 16, 2025
1 parent eb9784e commit 5ced9e6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions compositor_pipeline/src/pipeline.rs
Original file line number Diff line number Diff line change
Expand Up @@ -508,8 +508,8 @@ impl Pipeline {
impl Drop for Pipeline {
fn drop(&mut self) {
if let Some(sender) = self.shutdown_whip_whep_sender.take() {
if let Err(err) = sender.send(()) {
error!("Cannot sent shutdown signal to WHIP WHEP server: {err:?}")
if sender.send(()).is_err() {
error!("Cannot send shutdown signal to WHIP WHEP server")
}
}
self.queue.shutdown()
Expand Down

0 comments on commit 5ced9e6

Please sign in to comment.