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

Unified Diff: gcl.py

Issue 130493002: Handle the PrimeLint SSL read timeout better. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/depot_tools.git@master
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: gcl.py
diff --git a/gcl.py b/gcl.py
index db1e5b3eb9b46e8db34b509014beeb631b84cb6b..4bfc29bd882410152dde8f4281edec899e8bf4d5 100755
--- a/gcl.py
+++ b/gcl.py
@@ -13,6 +13,7 @@ import optparse
import os
import random
import re
+import ssl
import string
import sys
import tempfile
@@ -400,8 +401,16 @@ class ChangeInfo(object):
"""Do background work on Rietveld to lint the file so that the results are
ready when the issue is viewed."""
if self.issue and self.patchset:
- self.SendToRietveld('/lint/issue%s_%s' % (self.issue, self.patchset),
- timeout=10)
+ try:
M-A Ruel 2014/01/09 02:08:14 You could remove the call completely.
wtc 2014/01/09 15:07:34 Does "git cl upload" also run lint job on Rietveld
wtc 2014/01/09 17:58:27 Thanks for the reply. I suspect the "background w
+ print "Linting the CL on Rietveld..."
+ self.SendToRietveld('/lint/issue%s_%s' % (self.issue, self.patchset),
+ timeout=60)
+ print "Lint done"
+ except ssl.SSLError as e:
+ if e.message == 'The read operation timed out':
+ print "Rietveld took too long to lint the CL. Read timeout ignored."
+ else:
+ raise
def SendToRietveld(self, request_path, timeout=None, **kwargs):
"""Send a POST/GET to Rietveld. Returns the response body."""
« 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