You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by ta...@apache.org on 2016/04/20 20:25:20 UTC

qpid-jms git commit: NO-JIRA: Reduce unnecessary checkpoint runs during the tests that can cause long pauses on slow CI hardware.

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 <ta...@gmail.com>
Authored: Wed Apr 20 14:25:12 2016 -0400
Committer: Timothy Bish <ta...@gmail.com>
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: commits-unsubscribe@qpid.apache.org
For additional commands, e-mail: commits-help@qpid.apache.org