Increase timeouts for slower environments

This commit is contained in:
jbertram 2015-03-04 13:52:19 -06:00
parent 080c1dd058
commit 63064506e0
2 changed files with 2 additions and 2 deletions

View File

@ -90,7 +90,7 @@ public abstract class ServiceTestBase extends UnitTestCase
* debugging.
*/
private static final String SEND_CALL_NUMBER = "sendCallNumber";
protected static final long WAIT_TIMEOUT = 10000;
protected static final long WAIT_TIMEOUT = 20000;
private int sendMsgCount = 0;
@Override

View File

@ -161,7 +161,7 @@ public class LargeMessageOverBridgeTest extends JMSClusteredTestBase
for (int i = 0; i < 5; i++)
{
BytesMessage msg2 = (BytesMessage) cons2.receive(5000);
BytesMessage msg2 = (BytesMessage) cons2.receive(10000);
assertNotNull(msg2);
msg2.acknowledge();