We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
默认 auth 为 (let delay_sec = login_response.token_ttl / 10;) 30min 复现卡住; 可以调整为 let delay_sec = login_response.token_ttl / 100; 3min 复现
let delay_sec = login_response.token_ttl / 10;
let delay_sec = login_response.token_ttl / 100;
【新逻辑】卡在 receiver.recv()
【旧逻辑】卡在 futures::executor::block_on(future)
The text was updated successfully, but these errors were encountered:
@gy0801151351 请关注
Sorry, something went wrong.
查看了代码, 发现是合并了一段中间代码. 这个地方我改了两次, 第一次是使用channel, 第二次是使用executor.
Change: Break Change api of auth plugin, support async fn. #161
7b6294b
1b1a23b
It seems like tokio-rs/tokio#4730
CherishCai
Successfully merging a pull request may close this issue.
解决方案
复现手段
默认 auth 为 (
let delay_sec = login_response.token_ttl / 10;
) 30min 复现卡住;可以调整为
let delay_sec = login_response.token_ttl / 100;
3min 复现现象如下
【新逻辑】卡在 receiver.recv()
【旧逻辑】卡在 futures::executor::block_on(future)
The text was updated successfully, but these errors were encountered: