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/03/26 20:32:47 UTC

git commit: Add maintenance commands into aurora_admin

Repository: incubator-aurora
Updated Branches:
  refs/heads/master 9d6e13810 -> 7403fd439


Add maintenance commands into aurora_admin

Bugs closed: AURORA-288

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


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

Branch: refs/heads/master
Commit: 7403fd439ed15b109d5e92957f1c0b446ba208c4
Parents: 9d6e138
Author: Joe Smith <ya...@gmail.com>
Authored: Wed Mar 26 12:25:40 2014 -0700
Committer: Maxim Khutornenko <ma...@apache.org>
Committed: Wed Mar 26 12:25:40 2014 -0700

----------------------------------------------------------------------
 src/main/python/apache/aurora/client/bin/aurora_admin.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-aurora/blob/7403fd43/src/main/python/apache/aurora/client/bin/aurora_admin.py
----------------------------------------------------------------------
diff --git a/src/main/python/apache/aurora/client/bin/aurora_admin.py b/src/main/python/apache/aurora/client/bin/aurora_admin.py
index 2853660..5a37ae7 100644
--- a/src/main/python/apache/aurora/client/bin/aurora_admin.py
+++ b/src/main/python/apache/aurora/client/bin/aurora_admin.py
@@ -15,14 +15,14 @@
 #
 
 from apache.aurora.client.base import generate_terse_usage
-from apache.aurora.client.commands import admin, help
+from apache.aurora.client.commands import admin, help, maintenance
 from apache.aurora.client.options import add_verbosity_options
 
 from twitter.common import app
 from twitter.common.log.options import LogOptions
 
 
-app.register_commands_from(admin, help)
+app.register_commands_from(admin, help, maintenance)
 add_verbosity_options()