AMBARI-22253. Fix order of arguments in ServiceRequest call (adoroszlai)
Project: http://git-wip-us.apache.org/repos/asf/ambari/repo Commit: http://git-wip-us.apache.org/repos/asf/ambari/commit/0e0ec1f4 Tree: http://git-wip-us.apache.org/repos/asf/ambari/tree/0e0ec1f4 Diff: http://git-wip-us.apache.org/repos/asf/ambari/diff/0e0ec1f4 Branch: refs/heads/branch-feature-AMBARI-14714-blueprintv2 Commit: 0e0ec1f4a5644a3ecb1feb1ff4e7e7e9aa1b1086 Parents: 6fcfa74 Author: Attila Doroszlai <[email protected]> Authored: Thu Nov 16 20:33:38 2017 +0100 Committer: Doroszlai, Attila <[email protected]> Committed: Tue Dec 5 23:55:56 2017 +0100 ---------------------------------------------------------------------- .../main/java/org/apache/ambari/server/topology/AmbariContext.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ambari/blob/0e0ec1f4/ambari-server/src/main/java/org/apache/ambari/server/topology/AmbariContext.java ---------------------------------------------------------------------- diff --git a/ambari-server/src/main/java/org/apache/ambari/server/topology/AmbariContext.java b/ambari-server/src/main/java/org/apache/ambari/server/topology/AmbariContext.java index f413768..c04009f 100644 --- a/ambari-server/src/main/java/org/apache/ambari/server/topology/AmbariContext.java +++ b/ambari-server/src/main/java/org/apache/ambari/server/topology/AmbariContext.java @@ -266,7 +266,7 @@ public class AmbariContext { repoVersion)); } - serviceRequests.add(new ServiceRequest(clusterName, serviceGroup.getName(), service.getType(), service.getName(), + serviceRequests.add(new ServiceRequest(clusterName, serviceGroup.getName(), service.getName(), service.getType(), repoVersion.getId(), null, credentialStoreEnabled, null)); for (ComponentV2 component : topology.getBlueprint().getComponents(service)) {
