summaryrefslogtreecommitdiffstats
path: root/src/launcher/request.rs
diff options
context:
space:
mode:
authorLibravatar bigfoot547 <[email protected]>2025-01-10 16:43:09 -0600
committerLibravatar bigfoot547 <[email protected]>2025-01-10 16:43:09 -0600
commit6dc6edc7af928593590a922bc4b8a3166a322c13 (patch)
tree3e57c04c90558e3fbc59a81d03be7f2885ba1a72 /src/launcher/request.rs
parentuntested moment (remove reqwest) (diff)
curl attemptcurl-attempt
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();
});