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
This method: listen_sse is called recursively but it's not tail-call optimized, so the stack size grows with each sent chunk. For long / active SSE connections this will cause issues. Removing returning conn in that method fixes the issue.
The text was updated successfully, but these errors were encountered:
This method: listen_sse is called recursively but it's not tail-call optimized, so the stack size grows with each sent chunk. For long / active SSE connections this will cause issues. Removing returning conn in that method fixes the issue.
The text was updated successfully, but these errors were encountered: