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

[core-http] terminate connection when download stream is closed #14015

Merged
merged 11 commits into from
Oct 11, 2021

Commits on Feb 26, 2021

  1. [core-http] terminate connection when upload/download stream is closed

    The issue is that when the stream is closed explicitly by `stream.destroy()`
    call, we don't ask the underlying transportation layer to cancel the request,
    thus leaving network connection to service open which could cause resource
    exhaustion.
    
    Addresses Azure#11850
    jeremymeng committed Feb 26, 2021
    Configuration menu
    Copy the full SHA
    15ac134 View commit details
    Browse the repository at this point in the history

Commits on Sep 9, 2021

  1. Configuration menu
    Copy the full SHA
    b4e71d3 View commit details
    Browse the repository at this point in the history
  2. Don't abort upload stream on stream close event

    as the uploading might still be in progress.
    jeremymeng authored Sep 9, 2021
    Configuration menu
    Copy the full SHA
    3c4b0d8 View commit details
    Browse the repository at this point in the history

Commits on Sep 13, 2021

  1. use once instead of on

    jeremymeng authored Sep 13, 2021
    Configuration menu
    Copy the full SHA
    507d33f View commit details
    Browse the repository at this point in the history

Commits on Sep 28, 2021

  1. Configuration menu
    Copy the full SHA
    2ad1f93 View commit details
    Browse the repository at this point in the history
  2. Add a test

    jeremymeng authored Sep 28, 2021
    Configuration menu
    Copy the full SHA
    c5e463c View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    3ac9c9c View commit details
    Browse the repository at this point in the history

Commits on Oct 8, 2021

  1. Configuration menu
    Copy the full SHA
    9a79799 View commit details
    Browse the repository at this point in the history
  2. formatting

    jeremymeng authored Oct 8, 2021
    Configuration menu
    Copy the full SHA
    d9935b4 View commit details
    Browse the repository at this point in the history
  3. Remove console.log call

    jeremymeng authored Oct 8, 2021
    Configuration menu
    Copy the full SHA
    63a87d5 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    97e4642 View commit details
    Browse the repository at this point in the history