mirror of
https://github.com/astral-sh/uv.git
synced 2025-11-02 04:48:18 +00:00
Ignore send errors in installer (#6667)
## Summary Similar to https://github.com/astral-sh/uv/pull/6182.
This commit is contained in:
parent
5ef0375204
commit
51723a2699
1 changed files with 3 additions and 1 deletions
|
|
@ -94,7 +94,9 @@ impl<'a> Installer<'a> {
|
|||
reporter,
|
||||
relocatable,
|
||||
);
|
||||
tx.send(result).unwrap();
|
||||
|
||||
// This may fail if the main task was cancelled.
|
||||
let _ = tx.send(result);
|
||||
});
|
||||
|
||||
rx.await
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue