You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
import { Observable, interval, map } from 'rxjs';
sse(): Observable<MessageEvent> {
return interval(1000)
.pipe(map((_) => ({ data: { hello: 'world' } })));
}
``
### What is the expected behavior?
200 ok
### What do you see instead?
204 no content
### Additional information
_No response_
The text was updated successfully, but these errors were encountered:
What version of Bun is running?
latest
What platform is your computer?
linux
What steps can reproduce the bug?
unjs/h3 app that send sse
The text was updated successfully, but these errors were encountered: