Skip to content
This repository was archived by the owner on Sep 11, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
## 2025-06-10 - Runtime 0.18.0-alpha.6

- fix: address agent lifecycle issues [#881](https://github.com/hypermodeinc/modus/pull/881)
- fix: remove ack event from SSE stream [#884](https://github.com/hypermodeinc/modus/pull/884)

## 2025-06-10 - Go SDK 0.18.0-alpha.6

Expand Down
4 changes: 0 additions & 4 deletions runtime/graphql/graphql.go
Original file line number Diff line number Diff line change
Expand Up @@ -155,10 +155,6 @@ func handleGraphQLRequest(w http.ResponseWriter, r *http.Request) {
h.Set("Content-Type", "text/event-stream")
h.Set("Cache-Control", "no-cache")
h.Set("Connection", "keep-alive")

// note: this event isn't in the graphql-sse draft spec, but is helpful to indicate the connection is established,
// when testing, and doesn't interfere with the graphql events.
fmt.Fprint(w, "event: ack\ndata: \n\n")
flusher.Flush()

resultWriter.SetFlushCallback(func(data []byte) {
Expand Down
Loading