Update test to catch CI server issue
This commit is contained in:
parent
9280ca7749
commit
8780464c64
|
|
@ -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);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue