Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ public List<Event> agentRun(@RequestBody AgentRunRequest request) {
*/
@PostMapping(value = "/run_sse", produces = MediaType.TEXT_EVENT_STREAM_VALUE)
public SseEmitter agentRunSse(@RequestBody AgentRunRequest request) {
SseEmitter emitter = new SseEmitter();
SseEmitter emitter = new SseEmitter(60 * 60 * 1000L); // 1 hour timeout

if (request.appName == null || request.appName.trim().isEmpty()) {
log.warn(
Expand Down