Updated Branches: refs/heads/trunk b7954ab54 -> b27fa4bde
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/b27fa4bd Tree: http://git-wip-us.apache.org/repos/asf/incubator-ambari/tree/b27fa4bd Diff: http://git-wip-us.apache.org/repos/asf/incubator-ambari/diff/b27fa4bd Branch: refs/heads/trunk Commit: b27fa4bdedb7679dbedd63e32b86a052fa671c65 Parents: b7954ab Author: Siddharth Wagle <[email protected]> Authored: Tue Jul 16 10:46:37 2013 -0700 Committer: Siddharth Wagle <[email protected]> Committed: Tue Jul 16 10:46:37 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/b27fa4bd/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 5e03a62..940c3af 100755 --- a/ambari-server/src/main/python/ambari-server.py +++ b/ambari-server/src/main/python/ambari-server.py @@ -2610,7 +2610,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)
