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

Unified Diff: gcl.py

Issue 1075723002: Extract authentication options handling into a separate function. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/depot_tools.git@master
Patch Set: Created 5 years, 8 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
Index: gcl.py
diff --git a/gcl.py b/gcl.py
index cf657893c737133e5266ad8ff27bb052295f2ee0..32cbbf7e58c69ebdedcb850d5da095b5af039fb5 100755
--- a/gcl.py
+++ b/gcl.py
@@ -23,6 +23,7 @@ import urllib2
import breakpad # pylint: disable=W0611
+import auth
import fix_encoding
import gclient_utils
import git_cl
@@ -351,7 +352,10 @@ class ChangeInfo(object):
if not self._rpc_server:
if not self.rietveld:
ErrorExit(CODEREVIEW_SETTINGS_FILE_NOT_FOUND)
- self._rpc_server = rietveld.CachingRietveld(self.rietveld, None, None)
+ # TODO(vadimsh): glc.py should be deleted soon. Do not bother much about
+ # authentication options and always use defaults.
+ self._rpc_server = rietveld.CachingRietveld(
+ self.rietveld, auth.make_auth_config())
return self._rpc_server
def CloseIssue(self):

Powered by Google App Engine
This is Rietveld 408576698