You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@aurora.apache.org by ma...@apache.org on 2014/10/07 01:14:33 UTC

git commit: Build break fix.

Repository: incubator-aurora
Updated Branches:
  refs/heads/master b6610f309 -> acaad0555


Build break fix.

The https://reviews.apache.org/r/26004/ broke tests
added in https://reviews.apache.org/r/26372.

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


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

Branch: refs/heads/master
Commit: acaad0555db3ad9dccfb9b384b8c293cb9eea376
Parents: b6610f3
Author: Maxim Khutornenko <ma...@apache.org>
Authored: Mon Oct 6 16:13:21 2014 -0700
Committer: Maxim Khutornenko <ma...@apache.org>
Committed: Mon Oct 6 16:13:21 2014 -0700

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


http://git-wip-us.apache.org/repos/asf/incubator-aurora/blob/acaad055/src/main/python/apache/aurora/client/cli/update.py
----------------------------------------------------------------------
diff --git a/src/main/python/apache/aurora/client/cli/update.py b/src/main/python/apache/aurora/client/cli/update.py
index 9debc91..8a02b8a 100644
--- a/src/main/python/apache/aurora/client/cli/update.py
+++ b/src/main/python/apache/aurora/client/cli/update.py
@@ -169,6 +169,7 @@ class ListUpdates(Verb):
       CommandOption("cluster", metavar="clustername",
           help="Cluster to search for matching updates")]
 
+  @property
   def help(self):
     return """List all jobs updates, with summary info, about active updates that match a query."""
 
@@ -214,6 +215,7 @@ class UpdateStatus(Verb):
   def get_options(self):
     return [JSON_WRITE_OPTION, JOBSPEC_ARGUMENT]
 
+  @property
   def help(self):
     return """Display detailed status information about an in-progress update."""