From c59780a955872dfb96bd726d888dcc109b74f340 Mon Sep 17 00:00:00 2001 From: bhujay Date: Tue, 4 Sep 2018 21:54:28 +0530 Subject: [PATCH] Correct repo_id_map for hdp 2.5 When hdp2.5 cluster installation is done with off-line repo,hdp-utils repo name should be HDP-UTILS-1.1.0.21. However this is hardcoded wrongly in sahara repo_id_map as HDP-UTILS-1.1.0.20.As a result Ambari HDP repo set up fails. This fix will correct the repo_id_map Change-Id: Ibf7d341cc2d2a53be521039d4f843cdbc5ee880b Story: #2003654 Task: #26067 --- sahara/plugins/ambari/deploy.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sahara/plugins/ambari/deploy.py b/sahara/plugins/ambari/deploy.py index 1bdc31544d..99d86f0b1f 100644 --- a/sahara/plugins/ambari/deploy.py +++ b/sahara/plugins/ambari/deploy.py @@ -49,7 +49,7 @@ repo_id_map = { }, "2.5": { "HDP": "HDP-2.5", - "HDP-UTILS": "HDP-UTILS-1.1.0.20" + "HDP-UTILS": "HDP-UTILS-1.1.0.21" }, "2.6": { "HDP": "HDP-2.6",