Repository: incubator-slider
Updated Branches:
  refs/heads/develop 7b2a6a561 -> 6dc17c026


SLIDER-812 Making component configurations in appConfig available on the 
SliderAgent side (Thomas Liu via gourksaha)


Project: http://git-wip-us.apache.org/repos/asf/incubator-slider/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-slider/commit/6dc17c02
Tree: http://git-wip-us.apache.org/repos/asf/incubator-slider/tree/6dc17c02
Diff: http://git-wip-us.apache.org/repos/asf/incubator-slider/diff/6dc17c02

Branch: refs/heads/develop
Commit: 6dc17c026f6d6121af7de33c7deef991599475c6
Parents: 7b2a6a5
Author: Gour Saha <[email protected]>
Authored: Mon Jun 8 07:51:02 2015 -0700
Committer: Gour Saha <[email protected]>
Committed: Mon Jun 8 07:51:02 2015 -0700

----------------------------------------------------------------------
 .../slider/server/appmaster/web/rest/agent/ExecutionCommand.java   | 2 ++
 1 file changed, 2 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-slider/blob/6dc17c02/slider-core/src/main/java/org/apache/slider/server/appmaster/web/rest/agent/ExecutionCommand.java
----------------------------------------------------------------------
diff --git 
a/slider-core/src/main/java/org/apache/slider/server/appmaster/web/rest/agent/ExecutionCommand.java
 
b/slider-core/src/main/java/org/apache/slider/server/appmaster/web/rest/agent/ExecutionCommand.java
index e852902..e0d3a75 100644
--- 
a/slider-core/src/main/java/org/apache/slider/server/appmaster/web/rest/agent/ExecutionCommand.java
+++ 
b/slider-core/src/main/java/org/apache/slider/server/appmaster/web/rest/agent/ExecutionCommand.java
@@ -214,10 +214,12 @@ public class ExecutionCommand {
     this.pkg = pkg;
   }
 
+  @JsonProperty("componentConfig")
   public Map<String, Map<String, String>> getComponentConfigurations() {
     return componentConfigurations;
   }
 
+  @JsonProperty("componentConfig")
   public void setComponentConfigurations(
       Map<String, Map<String, String>> componentConfigurations) {
     this.componentConfigurations = componentConfigurations;

Reply via email to