summaryrefslogtreecommitdiffstats
path: root/src/launcher/request.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/launcher/request.rs')
-rw-r--r--src/launcher/request.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/launcher/request.rs b/src/launcher/request.rs
index df89a8b..ab11b73 100644
--- a/src/launcher/request.rs
+++ b/src/launcher/request.rs
@@ -122,7 +122,7 @@ impl Future for EasyFetch {
response_code: easy.response_code().expect("querying response code should not fail"),
data: out_data,
easy
- })).expect("curl fetch reader hangup (this shouldn't happen)");
+ })).ok(); // suppress this result since we don't really care if the caller hung up
waker.wake();
});