Fix deadlock loading node from the command line (#30561)

Before this change the the load env task never completed, leading to the
node runtime lock being held permanently.

Release Notes:

- N/A
This commit is contained in:
Conrad Irwin 2025-05-12 14:50:25 +02:00 committed by GitHub
parent a1d8e50ec1
commit 196586e352
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -309,6 +309,8 @@ fn main() {
shell_env_loaded_tx.send(()).ok(); shell_env_loaded_tx.send(()).ok();
}) })
.detach() .detach()
} else {
drop(shell_env_loaded_tx)
} }
app.on_open_urls({ app.on_open_urls({