You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Conversely, the functionality in reqwest::blocking must not be executed within an async runtime, or it will panic when attempting to block. If calling directly from an async function, consider using an async reqwest::Client instead. If the immediate context is only synchronous, but a transitive caller is async, consider changing that caller to use tokio::task::spawn_blocking around the calls that need to block.
The text was updated successfully, but these errors were encountered:
Calls to self_update must be wrapped in
tokio::task::spawn_blocking
.https://docs.rs/reqwest/0.11.2/reqwest/blocking/index.html
The text was updated successfully, but these errors were encountered: