You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by sb...@apache.org on 2015/06/08 00:22:55 UTC

incubator-ignite git commit: #nodejs: change port.

Repository: incubator-ignite
Updated Branches:
  refs/heads/ignite-nodejs b0a6c9715 -> e85cb687d


#nodejs: change port.


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

Branch: refs/heads/ignite-nodejs
Commit: e85cb687d5c018fe59046e7835a38041b8f9e8c8
Parents: b0a6c97
Author: ivasilinets <iv...@gridgain.com>
Authored: Mon Jun 8 01:22:49 2015 +0300
Committer: ivasilinets <iv...@gridgain.com>
Committed: Mon Jun 8 01:22:49 2015 +0300

----------------------------------------------------------------------
 modules/nodejs/src/test/nodejs/rest-jetty.xml   | 2 +-
 modules/nodejs/src/test/nodejs/test_ignition.js | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/e85cb687/modules/nodejs/src/test/nodejs/rest-jetty.xml
----------------------------------------------------------------------
diff --git a/modules/nodejs/src/test/nodejs/rest-jetty.xml b/modules/nodejs/src/test/nodejs/rest-jetty.xml
index e31304f..1ea2a38 100644
--- a/modules/nodejs/src/test/nodejs/rest-jetty.xml
+++ b/modules/nodejs/src/test/nodejs/rest-jetty.xml
@@ -31,7 +31,7 @@
                     <SystemProperty name="IGNITE_JETTY_HOST" default="localhost"/>
                 </Set>
                 <Set name="port">
-                    <SystemProperty name="IGNITE_JETTY_PORT" default="9090"/>
+                    <SystemProperty name="IGNITE_JETTY_PORT" default="9095"/>
                 </Set>
                 <Set name="idleTimeout">30000</Set>
                 <Set name="reuseAddress">true</Set>

http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/e85cb687/modules/nodejs/src/test/nodejs/test_ignition.js
----------------------------------------------------------------------
diff --git a/modules/nodejs/src/test/nodejs/test_ignition.js b/modules/nodejs/src/test/nodejs/test_ignition.js
index f0d140f..14b3209 100644
--- a/modules/nodejs/src/test/nodejs/test_ignition.js
+++ b/modules/nodejs/src/test/nodejs/test_ignition.js
@@ -24,7 +24,7 @@ TestIgnition.test_ignition_fail = function ()  {
 }
 
 TestIgnition.ignition_start_success = function() {
-    Ignition.start(['127.0.0.1:9090'], onConnect);
+    Ignition.start(['127.0.0.1:9095'], onConnect);
 
     function onConnect(error, server) {
         if (error) {