mirror of
https://github.com/apache/activemq.git
synced 2025-02-22 01:44:53 +00:00
AMQ-7221 - Fix InMemoryJobSchedulerManagementTest that was broken after
patch (cherry picked from commit 814a286dfe64bfde749e54b8552b5197abe97b37)
This commit is contained in:
parent
34a235b256
commit
8f8fda26ec
@ -60,8 +60,10 @@ public class JobSchedulerManagementTest extends JobSchedulerTestSupport {
|
||||
@Override
|
||||
protected BrokerService createBroker() throws Exception {
|
||||
BrokerService brokerService = createBroker(true);
|
||||
((JobSchedulerStoreImpl) brokerService.getJobSchedulerStore()).setCleanupInterval(500);
|
||||
((JobSchedulerStoreImpl) brokerService.getJobSchedulerStore()).setJournalMaxFileLength(100* 1024);
|
||||
if (isPersistent()) {
|
||||
((JobSchedulerStoreImpl) brokerService.getJobSchedulerStore()).setCleanupInterval(500);
|
||||
((JobSchedulerStoreImpl) brokerService.getJobSchedulerStore()).setJournalMaxFileLength(100 * 1024);
|
||||
}
|
||||
return brokerService;
|
||||
}
|
||||
|
||||
@ -102,7 +104,10 @@ public class JobSchedulerManagementTest extends JobSchedulerTestSupport {
|
||||
// Now wait and see if any get delivered, none should.
|
||||
latch.await(10, TimeUnit.SECONDS);
|
||||
assertEquals(latch.getCount(), COUNT);
|
||||
assertEquals(1, getNumberOfJournalFiles());
|
||||
|
||||
if (isPersistent()) {
|
||||
assertEquals(1, getNumberOfJournalFiles());
|
||||
}
|
||||
|
||||
connection.close();
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user