Updated Branches: refs/heads/branch-1.2.5 24b99ab6b -> fc4be8fe9
AMBARI-2658. Uninformative message after entering wrong Master Key during ambari-server setup. (swagle) Project: http://git-wip-us.apache.org/repos/asf/incubator-ambari/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-ambari/commit/fc4be8fe Tree: http://git-wip-us.apache.org/repos/asf/incubator-ambari/tree/fc4be8fe Diff: http://git-wip-us.apache.org/repos/asf/incubator-ambari/diff/fc4be8fe Branch: refs/heads/branch-1.2.5 Commit: fc4be8fe93c9c4616489639711b1c3100e0d1a6b Parents: 24b99ab Author: Siddharth Wagle <[email protected]> Authored: Tue Jul 16 10:57:15 2013 -0700 Committer: Siddharth Wagle <[email protected]> Committed: Tue Jul 16 10:57:15 2013 -0700 ---------------------------------------------------------------------- ambari-server/src/main/python/ambari-server.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-ambari/blob/fc4be8fe/ambari-server/src/main/python/ambari-server.py ---------------------------------------------------------------------- diff --git a/ambari-server/src/main/python/ambari-server.py b/ambari-server/src/main/python/ambari-server.py index 8b04dd3..c73c48c 100755 --- a/ambari-server/src/main/python/ambari-server.py +++ b/ambari-server/src/main/python/ambari-server.py @@ -2594,7 +2594,7 @@ def decrypt_password_for_alias(alias): def get_original_master_key(properties): try: masterKey = get_validated_string_input('Enter current Master Key: ', - "", ".*", "", True, True) + "", ".*", "", True, False) except KeyboardInterrupt: print 'Exiting...' sys.exit(1)
