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

HttpServer memory leak #6550

Closed
madsager opened this issue Nov 6, 2012 · 3 comments
Closed

HttpServer memory leak #6550

madsager opened this issue Nov 6, 2012 · 3 comments
Assignees
Labels
area-library library-io P0 A serious issue requiring immediate resolution
Milestone

Comments

@madsager
Copy link
Contributor

madsager commented Nov 6, 2012

Bombarding the following trivial http server with requests will lead to constant memory growth until out of memory.

import('dart:io');

main() {
  var server = new HttpServer();
  server.listen('127.0.0.1', 8080);
  server.defaultRequestHandler = (request, response) {
    response.outputStream.close();
  };
}

@madsager
Copy link
Contributor Author

madsager commented Nov 6, 2012

Proposed fix:

http://codereview.chromium.org/11364097/


Added Started label.

@madsager
Copy link
Contributor Author

madsager commented Nov 6, 2012

Added Fixed label.

@kevmoo
Copy link
Member

kevmoo commented May 14, 2014

Removed Area-IO label.
Added Area-Library, Library-IO labels.

@madsager madsager added Type-Defect P0 A serious issue requiring immediate resolution area-library library-io labels May 14, 2014
@madsager madsager self-assigned this May 14, 2014
@madsager madsager added this to the M2 milestone May 14, 2014
This issue was closed.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
area-library library-io P0 A serious issue requiring immediate resolution
Projects
None yet
Development

No branches or pull requests

2 participants