Repository: ambari Updated Branches: refs/heads/branch-feature-AMBARI-14714 f953ceb5a -> 09724a276
AMBARI-22164. Fix wrong assignment due to leftover parameter name (adoroszlai) Project: http://git-wip-us.apache.org/repos/asf/ambari/repo Commit: http://git-wip-us.apache.org/repos/asf/ambari/commit/09724a27 Tree: http://git-wip-us.apache.org/repos/asf/ambari/tree/09724a27 Diff: http://git-wip-us.apache.org/repos/asf/ambari/diff/09724a27 Branch: refs/heads/branch-feature-AMBARI-14714 Commit: 09724a2769f3ea12e89574f60e78f1f47ddeb26d Parents: f953ceb Author: Doroszlai, Attila <[email protected]> Authored: Wed Dec 6 10:50:44 2017 +0100 Committer: Doroszlai, Attila <[email protected]> Committed: Fri Dec 15 18:06:14 2017 +0100 ---------------------------------------------------------------------- .../ambari/server/controller/ServiceComponentHostRequest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ambari/blob/09724a27/ambari-server/src/main/java/org/apache/ambari/server/controller/ServiceComponentHostRequest.java ---------------------------------------------------------------------- diff --git a/ambari-server/src/main/java/org/apache/ambari/server/controller/ServiceComponentHostRequest.java b/ambari-server/src/main/java/org/apache/ambari/server/controller/ServiceComponentHostRequest.java index ea082c6..2554c25 100644 --- a/ambari-server/src/main/java/org/apache/ambari/server/controller/ServiceComponentHostRequest.java +++ b/ambari-server/src/main/java/org/apache/ambari/server/controller/ServiceComponentHostRequest.java @@ -37,7 +37,7 @@ public class ServiceComponentHostRequest { public ServiceComponentHostRequest(String clusterName, String serviceGroupName, - String serviceDisplayName, + String serviceName, String componentName, String hostname, String desiredState) {
