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

Unified Diff: tools/gardening/lib/src/client.dart

Issue 2996503002: Small improvements to bot summary. (Closed)
Patch Set: Remove spurious 'print'. Created 3 years, 4 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 | « tools/gardening/bin/summary.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/gardening/lib/src/client.dart
diff --git a/tools/gardening/lib/src/client.dart b/tools/gardening/lib/src/client.dart
index 2dc28333c75eb1168fd935d2b146f8edb5eccfd2..fb83275e982ebb4bba3f81328a841e4787ba1e71 100644
--- a/tools/gardening/lib/src/client.dart
+++ b/tools/gardening/lib/src/client.dart
@@ -30,7 +30,9 @@ class HttpBuildbotClient implements BuildbotClient {
Future<BuildResult> readResult(BuildUri buildUri) async {
try {
return await readBuildResultFromHttp(_client, buildUri);
- } on HttpException {
+ } on HttpException catch (e) {
+ return null;
+ } on SocketException catch (e) {
return null;
}
}
« no previous file with comments | « tools/gardening/bin/summary.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698