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

Unified Diff: sdk/lib/_internal/pub/lib/src/http.dart

Issue 59223005: Properly report pub.dartlang.org API errors. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 1 month 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: sdk/lib/_internal/pub/lib/src/http.dart
diff --git a/sdk/lib/_internal/pub/lib/src/http.dart b/sdk/lib/_internal/pub/lib/src/http.dart
index f9e63bbb8590eb0eb5f95e8130a1932d1b80514b..7108b255860f1dcf21d1fba72375c375f7950194 100644
--- a/sdk/lib/_internal/pub/lib/src/http.dart
+++ b/sdk/lib/_internal/pub/lib/src/http.dart
@@ -99,8 +99,6 @@ class PubHttpClient extends http.BaseClient {
'"${request.url.origin}".');
}
}
- print('Error in PubHttpClient.send (issue 12581) error: $error');
- print(' stacktrace: $stackTrace');
throw error;
}), HTTP_TIMEOUT, 'fetching URL "${request.url}"');
}
@@ -197,7 +195,7 @@ void handleJsonError(http.Response response) {
errorMap['error']['message'] is! String) {
invalidServerResponse(response);
}
- throw errorMap['error']['message'];
+ fail(errorMap['error']['message']);
}
/// Parses a response body, assuming it's JSON-formatted. Throws a user-friendly
« 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