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
fix: run HTTP requests in dedicated thread to avoid runtime panic
reqwest::blocking internally calls block_on for DNS resolution which
panics when called from within a tokio runtime. Spawn a dedicated
thread for the HTTP request to avoid the nested runtime issue.
0 commit comments