Update test to catch CI server issue

This commit is contained in:
Rossen Stoyanchev 2014-03-25 08:23:40 -04:00
parent 9280ca7749
commit 8780464c64
2 changed files with 2 additions and 2 deletions

View File

@ -581,7 +581,7 @@ public class StompBrokerRelayMessageHandlerIntegrationTests {
public void awaitAndAssert() throws InterruptedException {
synchronized(this.monitor) {
long endTime = System.currentTimeMillis() + 10000;
long endTime = System.currentTimeMillis() + 60000;
while ((this.expected.size() != this.actual.size()) && (System.currentTimeMillis() < endTime)) {
this.monitor.wait(500);
}

View File

@ -5,7 +5,7 @@ log4j.appender.console.layout.ConversionPattern=%d{HH:mm:ss,SSS} [%c] - %m%n
log4j.rootCategory=WARN, console
log4j.logger.org.springframework.messaging=DEBUG
log4j.logger.org.springframework.web=DEBUG
log4j.logger.org.apache.activemq=INFO
log4j.logger.org.apache.activemq=TRACE
# Enable TRACE level to chase integration test issues on CI servers
log4j.logger.org.springframework.messaging.simp.stomp=TRACE