Repository: ambari Updated Branches: refs/heads/branch-2.4 8294cc4fb -> 3ba622c2e refs/heads/trunk 942974b8f -> 7b271f5c5
AMBARI-17673. Atlas server fails to stop after ambari upgrade (aonishuk) Project: http://git-wip-us.apache.org/repos/asf/ambari/repo Commit: http://git-wip-us.apache.org/repos/asf/ambari/commit/7b271f5c Tree: http://git-wip-us.apache.org/repos/asf/ambari/tree/7b271f5c Diff: http://git-wip-us.apache.org/repos/asf/ambari/diff/7b271f5c Branch: refs/heads/trunk Commit: 7b271f5c576e8186c91a230aac8f89f25a1d37f6 Parents: 942974b Author: Andrew Onishuk <[email protected]> Authored: Tue Jul 12 12:19:15 2016 +0300 Committer: Andrew Onishuk <[email protected]> Committed: Tue Jul 12 12:19:15 2016 +0300 ---------------------------------------------------------------------- .../common-services/ATLAS/0.1.0.2.3/package/scripts/params.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ambari/blob/7b271f5c/ambari-server/src/main/resources/common-services/ATLAS/0.1.0.2.3/package/scripts/params.py ---------------------------------------------------------------------- diff --git a/ambari-server/src/main/resources/common-services/ATLAS/0.1.0.2.3/package/scripts/params.py b/ambari-server/src/main/resources/common-services/ATLAS/0.1.0.2.3/package/scripts/params.py index 68961c1..35a65ce 100644 --- a/ambari-server/src/main/resources/common-services/ATLAS/0.1.0.2.3/package/scripts/params.py +++ b/ambari-server/src/main/resources/common-services/ATLAS/0.1.0.2.3/package/scripts/params.py @@ -90,8 +90,8 @@ credential_provider = format( "jceks://file@{conf_dir}/atlas-site.jceks") # command line args ssl_enabled = default("/configurations/application-properties/atlas.enableTLS", False) -http_port = default("/configurations/application-properties/atlas.server.http.port", 21000) -https_port = default("/configurations/application-properties/atlas.server.https.port", 21443) +http_port = default("/configurations/application-properties/atlas.server.http.port", "21000") +https_port = default("/configurations/application-properties/atlas.server.https.port", "21443") if ssl_enabled: metadata_port = https_port metadata_protocol = 'https'
