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

Fix out-of-order write in HttpStreamsHandler #9416

Merged
merged 1 commit into from
Jun 8, 2023
Merged

Commits on Jun 8, 2023

  1. Fix out-of-order write in HttpStreamsHandler

    HttpStreamsHandler delays writing the first HttpContent to when the request has been fully written. The second HttpContent was not delayed however, so when writing the request took time (apparently with TLS?), the second HttpContent was written before the first.
    
    This patch delays all further writes (normal, complete and error) until the first content has been written.
    
    Should fix micronaut-projects/micronaut-tracing#316
    yawkat committed Jun 8, 2023
    Configuration menu
    Copy the full SHA
    1ecb00e View commit details
    Browse the repository at this point in the history