Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(510)

Unified Diff: runtime/bin/builtin.dart

Issue 126583003: - Don't wait for the client to time out before finishing the load (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/bin/builtin.dart
===================================================================
--- runtime/bin/builtin.dart (revision 31576)
+++ runtime/bin/builtin.dart (working copy)
@@ -85,6 +85,9 @@
.fold(new BytesBuilder(), (b, d) => b..add(d))
.then((builder) {
_requestCompleted(builder.takeBytes(), response);
+ // This client is only used for a single request. Force closing
+ // it now otherwise we wait around until it times out.
+ _client.close(force:true);
Anders Johnsen 2014/01/09 14:09:29 It sounds like it would be better to re-use the ht
Ivan Posva 2014/01/10 06:40:20 We cannot keep the client alive as the request is
});
}).catchError((error) {
_requestFailed(error);
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698