aboutsummaryrefslogtreecommitdiffstats
path: root/components/util/task.rs
diff options
context:
space:
mode:
Diffstat (limited to 'components/util/task.rs')
-rw-r--r--components/util/task.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/components/util/task.rs b/components/util/task.rs
index 2045d0c3e83..d59d6233860 100644
--- a/components/util/task.rs
+++ b/components/util/task.rs
@@ -37,7 +37,7 @@ pub fn spawn_named_with_send_on_failure<F, T>(name: &'static str,
Ok(()) => (),
Err(..) => {
debug!("{} failed, notifying constellation", name);
- dest.send(msg);
+ dest.send(msg).unwrap();
}
}
});