Closed AzideCupric closed 3 months ago
Name | Link |
---|---|
Latest commit | 38dd0d4d0d6de6378d8f2caedf410152a2b13b96 |
Latest deploy log | https://app.netlify.com/sites/nonebot-bison/deploys/66ab051dfcdedf0008c360a1 |
Deploy Preview | https://deploy-preview-573--nonebot-bison.netlify.app |
Preview on mobile | Toggle QR Code...Use your smartphone camera to open QR code link. |
To edit notification comments on pull requests, go to your Netlify site configuration.
Attention: Patch coverage is 94.53125%
with 14 lines
in your changes missing coverage. Please review.
Project coverage is 85.39%. Comparing base (
af470f2
) to head (38dd0d4
). Report is 3 commits behind head on main.
:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.
设想的状态转换图
stateDiagram-v2
direction LR
[*] --> NORMAL
NORMAL --> NORMAL: 请求成功
NORMAL --> REFRESH: 请求失败
REFRESH --> NORMAL: 请求成功
REFRESH --> REFRESH: 请求失败
REFRESH --> BACKOFF: 请求失败 若重试满但回避未满
REFRESH --> RAISE: 请求失败 若重试满且回避满
BACKOFF --> BACKOFF: 回避中
BACKOFF --> REFRESH: 回避中 若已超时
RAISE --> RAISE: 请求失败
RAISE --> NORMAL: 请求成功
修改记录: 检测达到最大BACKOFF次数应在REFRESH状态进行 增加条件控制
用生成器正经搓了个小状态机,感觉这样看起来更清晰一点 cookie pool 这几天测试情况来看没必要加,先删了(留给ospp吧
原先的30s对叔叔而言还是太敏感了