You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by gt...@apache.org on 2019/09/06 15:53:22 UTC

[activemq] branch master updated: AMQ-7196 - fix broken test; recovery not applicable to inmemory store

This is an automated email from the ASF dual-hosted git repository.

gtully pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/activemq.git


The following commit(s) were added to refs/heads/master by this push:
     new dc35218  AMQ-7196 - fix broken test; recovery not applicable to inmemory store
dc35218 is described below

commit dc35218a2d766a86a78376bfd4b51e7ae5bda935
Author: gtully <ga...@gmail.com>
AuthorDate: Fri Sep 6 16:53:02 2019 +0100

    AMQ-7196 - fix broken test; recovery not applicable to inmemory store
---
 .../broker/scheduler/memory/InMemeoryJmsSchedulerTest.java     | 10 ++++++++++
 1 file changed, 10 insertions(+)

diff --git a/activemq-unit-tests/src/test/java/org/apache/activemq/broker/scheduler/memory/InMemeoryJmsSchedulerTest.java b/activemq-unit-tests/src/test/java/org/apache/activemq/broker/scheduler/memory/InMemeoryJmsSchedulerTest.java
index 5144203..6ebf6ed 100644
--- a/activemq-unit-tests/src/test/java/org/apache/activemq/broker/scheduler/memory/InMemeoryJmsSchedulerTest.java
+++ b/activemq-unit-tests/src/test/java/org/apache/activemq/broker/scheduler/memory/InMemeoryJmsSchedulerTest.java
@@ -34,7 +34,17 @@ public class InMemeoryJmsSchedulerTest extends JmsSchedulerTest {
     }
 
     @Override
+    public void testScheduleFullRecoveryRestart() throws Exception {
+        // No persistence so scheduled jobs don't survive restart.
+    }
+
+    @Override
     public void testJobSchedulerStoreUsage() throws Exception {
         // No store usage numbers for in-memory store.
     }
+
+    @Override
+    public void testUpdatesAppliedToIndexBeforeJournalShouldBeDiscarded() throws Exception {
+        // not applicable when non persistent
+    }
 }