From d4576d97620e2b1a10291377df6bde86515ab116 Mon Sep 17 00:00:00 2001 From: Daniele Demichelis Date: Sun, 26 Feb 2017 18:49:01 +0100 Subject: [PATCH] BAEL-554 - Increased timeout (#1242) * Burlap & Hessian server added * Burlap & Hessian client work * Fixed main * Fixed formatting * Spring Remote example based on Burlap & Hessian runs in a JUnit test * Fixed main * Fixed formatting * Spring Remote example based on Burlap & Hessian runs in a JUnit test * Spring Remote example based on Burlap & Hessian runs in a JUnit test * Burlap & Hessian client work * Fixed main * Fixed main * Fixed formatting * Fixed formatting * Spring Remote example based on Burlap & Hessian runs in a JUnit test * Spring Remote example based on Burlap & Hessian runs in a JUnit test * Fixed POM --- .../test/java/com/baeldung/client/CabBookingServiceTest.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/spring-remoting/remoting-hessian-burlap/client/src/test/java/com/baeldung/client/CabBookingServiceTest.java b/spring-remoting/remoting-hessian-burlap/client/src/test/java/com/baeldung/client/CabBookingServiceTest.java index 20746bbf09..373701f714 100644 --- a/spring-remoting/remoting-hessian-burlap/client/src/test/java/com/baeldung/client/CabBookingServiceTest.java +++ b/spring-remoting/remoting-hessian-burlap/client/src/test/java/com/baeldung/client/CabBookingServiceTest.java @@ -30,7 +30,8 @@ public class CabBookingServiceTest { serverThread = serverThread(); log.info("Starting server."); serverThread.start(); - sleep(4000); + // increase this enough to let the server start + sleep(6000); } @org.junit.Test