Repository: flex-blazeds Updated Branches: refs/heads/develop 9816c0898 -> 2fe078b10
- Removed duplicate waiting positions ... Project: http://git-wip-us.apache.org/repos/asf/flex-blazeds/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-blazeds/commit/2fe078b1 Tree: http://git-wip-us.apache.org/repos/asf/flex-blazeds/tree/2fe078b1 Diff: http://git-wip-us.apache.org/repos/asf/flex-blazeds/diff/2fe078b1 Branch: refs/heads/develop Commit: 2fe078b104b7b43cd4038837db69c970aa9933cd Parents: 9816c08 Author: Christofer Dutz <[email protected]> Authored: Wed Jun 29 14:00:35 2016 +0200 Committer: Christofer Dutz <[email protected]> Committed: Wed Jun 29 14:00:35 2016 +0200 ---------------------------------------------------------------------- .../test/java/flex/messaging/io/amf/client/AMFConnectionIT.java | 3 --- .../src/test/java/flex/messaging/io/amf/client/AMFDataTypeIT.java | 3 --- testsuite/src/test/java/flex/messaging/util/TestServer.java | 2 +- 3 files changed, 1 insertion(+), 7 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/2fe078b1/testsuite/src/test/java/flex/messaging/io/amf/client/AMFConnectionIT.java ---------------------------------------------------------------------- diff --git a/testsuite/src/test/java/flex/messaging/io/amf/client/AMFConnectionIT.java b/testsuite/src/test/java/flex/messaging/io/amf/client/AMFConnectionIT.java index a35f24a..b0d2830 100644 --- a/testsuite/src/test/java/flex/messaging/io/amf/client/AMFConnectionIT.java +++ b/testsuite/src/test/java/flex/messaging/io/amf/client/AMFConnectionIT.java @@ -114,9 +114,6 @@ public class AMFConnectionIT extends TestCase if(serverPort == -1) { Assert.fail("Couldn't start server process"); } - // Give the "server" some time to startup. - Thread.sleep(3000L); - AMFConnection.registerAlias( "remoting.amfclient.ServerCustomType" /* server type */, "amfclient.ClientCustomType" /* client type */); http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/2fe078b1/testsuite/src/test/java/flex/messaging/io/amf/client/AMFDataTypeIT.java ---------------------------------------------------------------------- diff --git a/testsuite/src/test/java/flex/messaging/io/amf/client/AMFDataTypeIT.java b/testsuite/src/test/java/flex/messaging/io/amf/client/AMFDataTypeIT.java index a2a44bc..778134b 100644 --- a/testsuite/src/test/java/flex/messaging/io/amf/client/AMFDataTypeIT.java +++ b/testsuite/src/test/java/flex/messaging/io/amf/client/AMFDataTypeIT.java @@ -97,9 +97,6 @@ public class AMFDataTypeIT extends TestCase if(serverPort == -1) { Assert.fail("Couldn't start server process"); } - // Give the "server" some time to startup. - Thread.sleep(3000L); - AMFConnection.registerAlias( "remoting.amfclient.ServerCustomType" /* server type */, "amfclient.ClientCustomType" /* client type */); http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/2fe078b1/testsuite/src/test/java/flex/messaging/util/TestServer.java ---------------------------------------------------------------------- diff --git a/testsuite/src/test/java/flex/messaging/util/TestServer.java b/testsuite/src/test/java/flex/messaging/util/TestServer.java index 5883f3a..beb9320 100644 --- a/testsuite/src/test/java/flex/messaging/util/TestServer.java +++ b/testsuite/src/test/java/flex/messaging/util/TestServer.java @@ -53,7 +53,7 @@ public class TestServer { try { serverProcess = processBuilder.start(); // Give the server some time to ramp up. - Thread.sleep(500); + Thread.sleep(3000); System.out.println("STARTED"); return port; } catch (IOException e) {
