ignite-676

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

Branch: refs/heads/ignite-676
Commit: 88e011597d600c56af4f2b5a7b27e02eddf9de0a
Parents: f67abe7
Author: Artem Shutak <ashu...@gridgain.com>
Authored: Wed Apr 8 18:39:54 2015 +0300
Committer: Artem Shutak <ashu...@gridgain.com>
Committed: Wed Apr 8 18:39:54 2015 +0300

----------------------------------------------------------------------
 ...gniteProjectionStartStopRestartSelfTest.java | 36 ++++++++++----------
 1 file changed, 18 insertions(+), 18 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/88e01159/modules/ssh/src/test/java/org/apache/ignite/internal/IgniteProjectionStartStopRestartSelfTest.java
----------------------------------------------------------------------
diff --git 
a/modules/ssh/src/test/java/org/apache/ignite/internal/IgniteProjectionStartStopRestartSelfTest.java
 
b/modules/ssh/src/test/java/org/apache/ignite/internal/IgniteProjectionStartStopRestartSelfTest.java
index 4a72811..7fdb4c1 100644
--- 
a/modules/ssh/src/test/java/org/apache/ignite/internal/IgniteProjectionStartStopRestartSelfTest.java
+++ 
b/modules/ssh/src/test/java/org/apache/ignite/internal/IgniteProjectionStartStopRestartSelfTest.java
@@ -193,6 +193,24 @@ public class IgniteProjectionStartStopRestartSelfTest 
extends GridCommonAbstract
             }
         });
 
+        joinedLatch.await(WAIT_TIMEOUT, MILLISECONDS);
+
+        log.info(">>>>> File name=" + StartNodeCallableImpl.fName);
+
+        try {
+            BufferedReader reader = new BufferedReader(new 
FileReader(StartNodeCallableImpl.fName));
+
+            String st = "";
+
+            for (String line; (line = reader.readLine()) != null;)
+                st += line;
+
+            log.info(">>>>> File content:\n" + st);
+        }
+        catch (Throwable e) {
+            e.printStackTrace();
+        }
+
         assert joinedLatch.await(WAIT_TIMEOUT, MILLISECONDS);
 
         assert joinedCnt.get() == 1;
@@ -480,24 +498,6 @@ public class IgniteProjectionStartStopRestartSelfTest 
extends GridCommonAbstract
             }
         });
 
-        joinedLatch.await(WAIT_TIMEOUT, MILLISECONDS);
-
-        log.info(">>>>> File name=" + IgniteNodeCallableImpl.fName);
-
-        try {
-            BufferedReader reader = new BufferedReader(new 
FileReader(IgniteNodeCallableImpl.fName));
-
-            String st = "";
-
-            for (String line; (line = reader.readLine()) != null;)
-                st += line;
-
-            log.info(">>>>> File content:\n" + st);
-        }
-        catch (Throwable e) {
-            e.printStackTrace();
-        }
-
         assert joinedLatch.await(WAIT_TIMEOUT, MILLISECONDS);
 
         assert joinedCnt.get() == 1;

Reply via email to