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

Supported chunked behavior for responses #176

Merged
merged 5 commits into from
Sep 29, 2020

Commits on Sep 21, 2020

  1. Supported chunked behavior for responses

    Server send events are send as chunked responses. The expectation is
    that the chunks are immediately send and not buffered until the whole
    response is done.
    
    If a response is detected, the chunks are normally read and each read
    chunk is immediately flushed, replicating the upstream behavior
    downstream.
    matthiasblaesing committed Sep 21, 2020
    Configuration menu
    Copy the full SHA
    b39f03a View commit details
    Browse the repository at this point in the history

Commits on Sep 27, 2020

  1. Only flush when is.available is 0.

    Comments.
    dsmiley committed Sep 27, 2020
    Configuration menu
    Copy the full SHA
    5070efa View commit details
    Browse the repository at this point in the history

Commits on Sep 28, 2020

  1. Add unittest for proxying chunked transfers

    Supporting changes:
    - add jetty as a test dependency used as servlet execution engine
    - bump javax.servlet-api to version 3.1.0 which is required by jetty
    
    Jetty 9.4 requires java 8 as minimum version.
    matthiasblaesing committed Sep 28, 2020
    Configuration menu
    Copy the full SHA
    307b899 View commit details
    Browse the repository at this point in the history

Commits on Sep 29, 2020

  1. Configuration menu
    Copy the full SHA
    62ba909 View commit details
    Browse the repository at this point in the history
  2. CHANGES.md and minor things

    dsmiley committed Sep 29, 2020
    Configuration menu
    Copy the full SHA
    044c5ae View commit details
    Browse the repository at this point in the history