Skip to content
Draft
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
5 changes: 5 additions & 0 deletions src/common_issues.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Common Issues

- Q17: I am deploying an application and the responses from the instance are buffered. Instead of receiving N messages one-by-one, I receive them all at the end of the conversation. How can I fix this?
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
- Q17: I am deploying an application and the responses from the instance are buffered. Instead of receiving N messages one-by-one, I receive them all at the end of the conversation. How can I fix this?
## I am deploying an application and the responses from the instance are buffered. Instead of receiving N messages one-by-one, I receive them all at the end of the conversation. How can I fix this?


Set the `X-Accel-Buffering` in the response header. For example, for a streaming response application, this patch would fix things:
Loading