Repository: qpid-jms Updated Branches: refs/heads/master bcd4a91ca -> c33e2d687
NO-JIRA: Reduce unnecessary checkpoint runs during the tests that can cause long pauses on slow CI hardware. Project: http://git-wip-us.apache.org/repos/asf/qpid-jms/repo Commit: http://git-wip-us.apache.org/repos/asf/qpid-jms/commit/c33e2d68 Tree: http://git-wip-us.apache.org/repos/asf/qpid-jms/tree/c33e2d68 Diff: http://git-wip-us.apache.org/repos/asf/qpid-jms/diff/c33e2d68 Branch: refs/heads/master Commit: c33e2d6872321b5687c035cdec6101585f17ea31 Parents: bcd4a91 Author: Timothy Bish <[email protected]> Authored: Wed Apr 20 14:25:12 2016 -0400 Committer: Timothy Bish <[email protected]> Committed: Wed Apr 20 14:25:12 2016 -0400 ---------------------------------------------------------------------- .../test/java/org/apache/qpid/jms/support/QpidJmsTestSupport.java | 2 ++ 1 file changed, 2 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/qpid-jms/blob/c33e2d68/qpid-jms-interop-tests/qpid-jms-activemq-tests/src/test/java/org/apache/qpid/jms/support/QpidJmsTestSupport.java ---------------------------------------------------------------------- diff --git a/qpid-jms-interop-tests/qpid-jms-activemq-tests/src/test/java/org/apache/qpid/jms/support/QpidJmsTestSupport.java b/qpid-jms-interop-tests/qpid-jms-activemq-tests/src/test/java/org/apache/qpid/jms/support/QpidJmsTestSupport.java index 7290012..c710107 100644 --- a/qpid-jms-interop-tests/qpid-jms-activemq-tests/src/test/java/org/apache/qpid/jms/support/QpidJmsTestSupport.java +++ b/qpid-jms-interop-tests/qpid-jms-activemq-tests/src/test/java/org/apache/qpid/jms/support/QpidJmsTestSupport.java @@ -25,6 +25,7 @@ import java.util.List; import java.util.Map; import java.util.Set; import java.util.Vector; +import java.util.concurrent.TimeUnit; import javax.jms.Connection; import javax.jms.ConnectionFactory; @@ -179,6 +180,7 @@ public class QpidJmsTestSupport { kaha.setDirectory(new File(KAHADB_DIRECTORY + "/" + name)); kaha.setConcurrentStoreAndDispatchQueues(isConcurrentStoreAndDispatchQueues()); kaha.setConcurrentStoreAndDispatchTopics(isConcurrentStoreAndDispatchTopics()); + kaha.setCheckpointInterval(TimeUnit.MINUTES.toMillis(5)); brokerService.setPersistenceAdapter(kaha); } --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
