Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

The same code what send SSE work in node but not in bun #16042

Closed
Makkalay opened this issue Dec 29, 2024 · 0 comments
Closed

The same code what send SSE work in node but not in bun #16042

Makkalay opened this issue Dec 29, 2024 · 0 comments
Labels
bug Something isn't working needs triage

Comments

@Makkalay
Copy link

Makkalay commented Dec 29, 2024

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

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_
@Makkalay Makkalay added bug Something isn't working needs triage labels Dec 29, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working needs triage
Projects
None yet
Development

No branches or pull requests

1 participant