Repository: incubator-ignite
Updated Branches:
  refs/heads/ignite-55 3fc0cb5f3 -> 600bc9e3c


# IGNITE-128: Fixed configs.


Project: http://git-wip-us.apache.org/repos/asf/incubator-ignite/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-ignite/commit/61d04785
Tree: http://git-wip-us.apache.org/repos/asf/incubator-ignite/tree/61d04785
Diff: http://git-wip-us.apache.org/repos/asf/incubator-ignite/diff/61d04785

Branch: refs/heads/ignite-55
Commit: 61d047858d18381126c9e3c473311b9bb2665cd8
Parents: 0e55e6c
Author: vozerov-gridgain <voze...@gridgain.com>
Authored: Wed Feb 11 10:11:53 2015 +0300
Committer: vozerov-gridgain <voze...@gridgain.com>
Committed: Wed Feb 11 10:11:53 2015 +0300

----------------------------------------------------------------------
 config/hadoop/default-config.xml                               | 6 +++++-
 .../test/config/benchmark/spring-cache-client-benchmark-1.xml  | 6 +++++-
 .../test/config/benchmark/spring-cache-client-benchmark-2.xml  | 6 +++++-
 .../test/config/benchmark/spring-cache-client-benchmark-3.xml  | 6 +++++-
 modules/core/src/test/webapp/META-INF/gg-config.xml            | 6 +++++-
 5 files changed, 25 insertions(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/61d04785/config/hadoop/default-config.xml
----------------------------------------------------------------------
diff --git a/config/hadoop/default-config.xml b/config/hadoop/default-config.xml
index 8d49155..108f5ae 100644
--- a/config/hadoop/default-config.xml
+++ b/config/hadoop/default-config.xml
@@ -103,7 +103,11 @@
         <!--
             This port will be used by Apache Hadoop client to connect to 
Ignite node as if it was a job tracker.
         -->
-        <property name="restTcpPort" value="11211"/>
+        <property name="connectorConfiguration">
+            <bean 
class="org.apache.ignite.configuration.ConnectorConfiguration">
+                <property name="port" value="11211"/>
+            </bean>
+        </property>
 
         <!--
             Configure one GGFS file system instance named "ggfs" on this node.

http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/61d04785/modules/core/src/test/config/benchmark/spring-cache-client-benchmark-1.xml
----------------------------------------------------------------------
diff --git 
a/modules/core/src/test/config/benchmark/spring-cache-client-benchmark-1.xml 
b/modules/core/src/test/config/benchmark/spring-cache-client-benchmark-1.xml
index ed1ff5d..b1e8f6d 100644
--- a/modules/core/src/test/config/benchmark/spring-cache-client-benchmark-1.xml
+++ b/modules/core/src/test/config/benchmark/spring-cache-client-benchmark-1.xml
@@ -48,7 +48,11 @@
         <!-- Set to local host address just for examples. -->
         <property name="localHost" value="127.0.0.1"/>
 
-        <property name="restTcpPort" value="11211"/>
+        <property name="connectorConfiguration">
+            <bean 
class="org.apache.ignite.configuration.ConnectorConfiguration">
+                <property name="port" value="11211"/>
+            </bean>
+        </property>
 
         <!--<property name="peerClassLoadingEnabled" value="false"/>-->
 

http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/61d04785/modules/core/src/test/config/benchmark/spring-cache-client-benchmark-2.xml
----------------------------------------------------------------------
diff --git 
a/modules/core/src/test/config/benchmark/spring-cache-client-benchmark-2.xml 
b/modules/core/src/test/config/benchmark/spring-cache-client-benchmark-2.xml
index d60234a..5a134c3 100644
--- a/modules/core/src/test/config/benchmark/spring-cache-client-benchmark-2.xml
+++ b/modules/core/src/test/config/benchmark/spring-cache-client-benchmark-2.xml
@@ -46,7 +46,11 @@
         <!-- Set to local host address just for examples. -->
         <property name="localHost" value="127.0.0.1"/>
 
-        <property name="restTcpPort" value="11212"/>
+        <property name="connectorConfiguration">
+            <bean 
class="org.apache.ignite.configuration.ConnectorConfiguration">
+                <property name="port" value="11212"/>
+            </bean>
+        </property>
 
         <!--<property name="peerClassLoadingEnabled" value="false"/>-->
 

http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/61d04785/modules/core/src/test/config/benchmark/spring-cache-client-benchmark-3.xml
----------------------------------------------------------------------
diff --git 
a/modules/core/src/test/config/benchmark/spring-cache-client-benchmark-3.xml 
b/modules/core/src/test/config/benchmark/spring-cache-client-benchmark-3.xml
index af3fcbd..661dd0b 100644
--- a/modules/core/src/test/config/benchmark/spring-cache-client-benchmark-3.xml
+++ b/modules/core/src/test/config/benchmark/spring-cache-client-benchmark-3.xml
@@ -46,7 +46,11 @@
         <!-- Set to local host address just for examples. -->
         <property name="localHost" value="127.0.0.1"/>
 
-        <property name="restTcpPort" value="11213"/>
+        <property name="connectorConfiguration">
+            <bean 
class="org.apache.ignite.configuration.ConnectorConfiguration">
+                <property name="port" value="11213"/>
+            </bean>
+        </property>
 
         <!--<property name="peerClassLoadingEnabled" value="false"/>-->
 

http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/61d04785/modules/core/src/test/webapp/META-INF/gg-config.xml
----------------------------------------------------------------------
diff --git a/modules/core/src/test/webapp/META-INF/gg-config.xml 
b/modules/core/src/test/webapp/META-INF/gg-config.xml
index ddb66f1..a254173 100644
--- a/modules/core/src/test/webapp/META-INF/gg-config.xml
+++ b/modules/core/src/test/webapp/META-INF/gg-config.xml
@@ -69,7 +69,11 @@
         <property name="localHost" value="127.0.0.1"/>
 
         <!-- Configure REST TCP server address. -->
-        <property name="restTcpHost" value="127.0.0.1"/>
+        <property name="connectorConfiguration">
+            <bean 
class="org.apache.ignite.configuration.ConnectorConfiguration">
+                <property name="host" value="127.0.0.1"/>
+            </bean>
+        </property>
 
         <!--
             Enable cache events.

Reply via email to