mirror of
https://github.com/certimate-go/certimate.git
synced 2026-04-26 05:05:56 +03:00
[GH-ISSUE #745] [Bug] 手动执行任务时获取/api/realtime超时 #502
Labels
No labels
announcement
backlog
bug
declined
documentation
duplicate
enhancement
good first issue
good first issue
help wanted
invalid
pull-request
question
stale
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/certimate#502
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @llongtao on GitHub (May 30, 2025).
Original GitHub issue: https://github.com/certimate-go/certimate/issues/745
软件版本 / Release Version
v0.3.14
缺陷描述 / Description
手动执行任务时首先会调用/api/realtime,15秒后页面就超时终端了请求,我手动调试该接口调用大概需要20秒返回,不知道具体是做什么的
复现步骤 / Steps to reproduce
必现
日志 / Logs
其他 / Miscellaneous
No response
贡献 / Contribution
@fudiwei commented on GitHub (May 30, 2025):
SSE 接口,用于服务端给前端推送工作流执行结果。超时的话自行检查是否套了反代、防火墙等其他服务导致的。
@llongtao commented on GitHub (May 31, 2025):
感谢,是nginx代理的问题,nginx把sse响应缓存导致前端以为响应超时了中断了连接, 需要设置proxy_buffering off;