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/64458c7f
Tree: http://git-wip-us.apache.org/repos/asf/ambari/tree/64458c7f
Diff: http://git-wip-us.apache.org/repos/asf/ambari/diff/64458c7f

Branch: refs/heads/branch-feature-AMBARI-14714-blueprintv2
Commit: 64458c7f11f85bae162c3effe7970122aa4867dd
Parents: 52db58f
Author: Attila Doroszlai <adorosz...@hortonworks.com>
Authored: Thu Nov 16 20:33:38 2017 +0100
Committer: Doroszlai, Attila <adorosz...@hortonworks.com>
Committed: Fri Dec 8 20:24:24 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/64458c7f/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)) {

Reply via email to