You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@aurora.apache.org by wf...@apache.org on 2015/05/07 01:15:48 UTC

aurora git commit: Set verbose=False in the client to squelch noisy ZooKeeper logging.

Repository: aurora
Updated Branches:
  refs/heads/master fc9cb02ef -> fef71941d


Set verbose=False in the client to squelch noisy ZooKeeper logging.

Reviewed at https://reviews.apache.org/r/33920/


Project: http://git-wip-us.apache.org/repos/asf/aurora/repo
Commit: http://git-wip-us.apache.org/repos/asf/aurora/commit/fef71941
Tree: http://git-wip-us.apache.org/repos/asf/aurora/tree/fef71941
Diff: http://git-wip-us.apache.org/repos/asf/aurora/diff/fef71941

Branch: refs/heads/master
Commit: fef71941db01984043e94120d65f4e873df0e2c1
Parents: fc9cb02
Author: Bill Farner <wf...@apache.org>
Authored: Wed May 6 16:15:31 2015 -0700
Committer: Bill Farner <wf...@apache.org>
Committed: Wed May 6 16:15:31 2015 -0700

----------------------------------------------------------------------
 src/main/python/apache/aurora/client/cli/context.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/aurora/blob/fef71941/src/main/python/apache/aurora/client/cli/context.py
----------------------------------------------------------------------
diff --git a/src/main/python/apache/aurora/client/cli/context.py b/src/main/python/apache/aurora/client/cli/context.py
index 146960e..bd40410 100644
--- a/src/main/python/apache/aurora/client/cli/context.py
+++ b/src/main/python/apache/aurora/client/cli/context.py
@@ -96,7 +96,7 @@ class AuroraCommandContext(Context):
     base_class = HookedAuroraClientAPI if enable_hooks else AuroraClientAPI
 
     if cluster not in apis:
-      api = base_class(clusters[cluster], AURORA_V2_USER_AGENT_NAME, verbose=True)
+      api = base_class(clusters[cluster], AURORA_V2_USER_AGENT_NAME, verbose=False)
       apis[cluster] = api
     return add_auth_error_handler(apis[cluster])