Replies: 1 comment
-
Does this help https://www.stevejgordon.co.uk/an-introduction-to-sequencereader? |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Considering this code (notice
requestBodyInBytes.Buffer.FirstSpan
):When running local (windows) this works fine with a body around 1.500 bytes. But in our production environment (aks, linux) the body would be cut off around 499 bytes.
Is there a difference in size of the buffer for different environment? (not quite sure how the PipeReader works beneath the surface)
To fix my issue though I just used the whole buffer:
Beta Was this translation helpful? Give feedback.
All reactions