Vitaly Brodetskyi created AMBARI-12869:
------------------------------------------
Summary: Problem with upgradehelper.py and https option
Key: AMBARI-12869
URL: https://issues.apache.org/jira/browse/AMBARI-12869
Project: Ambari
Issue Type: Bug
Components: ambari-server
Affects Versions: 2.1.0
Reporter: Vitaly Brodetskyi
Assignee: Vitaly Brodetskyi
Priority: Critical
Fix For: 2.1.2
The code should be changed from store_false to store_true in order for the
--https cli-opt to work:
FROM:
parser.add_option('--https', default=False, action="store_false", dest="https",
help="Use https protocol for connection to the server")
TO:
parser.add_option('--https', default=False, action="store_true", dest="https",
help="Use https protocol for connection to the server")
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)