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

Unified Diff: testing/legion/common_lib.py

Issue 1124763003: Update from https://crrev.com/327068 (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: update nacl, buildtools, fix display_change_notifier_unittest Created 5 years, 7 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: testing/legion/common_lib.py
diff --git a/testing/legion/common_lib.py b/testing/legion/common_lib.py
index c752e0f0afc12d7c1d8da2244ed3a5325acb53bc..6e7954bbeeb2ab7877da4f6d249e030e8f79fa24 100644
--- a/testing/legion/common_lib.py
+++ b/testing/legion/common_lib.py
@@ -26,7 +26,7 @@ def InitLogging():
argparse.ArgumentError if the --verbosity arg is incorrect.
"""
parser = argparse.ArgumentParser()
- logging_action = parser.add_argument('--verbosity', default='ERROR')
+ logging_action = parser.add_argument('--verbosity', default='INFO')
args, _ = parser.parse_known_args()
if args.verbosity not in LOGGING_LEVELS:
raise argparse.ArgumentError(
@@ -40,4 +40,4 @@ def ConnectToServer(server):
"""Connect to an RPC server."""
addr = 'http://%s:%d' % (server, SERVER_PORT)
logging.debug('Connecting to RPC server at %s', addr)
- return xmlrpclib.Server(addr)
+ return xmlrpclib.Server(addr, allow_none=True)

Powered by Google App Engine
This is Rietveld 408576698