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

[5/6] activemq-artemis git commit: Fix RaceOnSyncLargeMessageOverReplicationTest

Fix RaceOnSyncLargeMessageOverReplicationTest


Project: http://git-wip-us.apache.org/repos/asf/activemq-artemis/repo
Commit: http://git-wip-us.apache.org/repos/asf/activemq-artemis/commit/1d770e49
Tree: http://git-wip-us.apache.org/repos/asf/activemq-artemis/tree/1d770e49
Diff: http://git-wip-us.apache.org/repos/asf/activemq-artemis/diff/1d770e49

Branch: refs/heads/master
Commit: 1d770e49f00685e6da69c996928624981a9a740a
Parents: 500a734
Author: jbertram <jb...@apache.org>
Authored: Wed May 4 15:28:23 2016 -0500
Committer: jbertram <jb...@apache.org>
Committed: Wed May 4 15:28:23 2016 -0500

----------------------------------------------------------------------
 .../extras/byteman/RaceOnSyncLargeMessageOverReplicationTest.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/activemq-artemis/blob/1d770e49/tests/extra-tests/src/test/java/org/apache/activemq/artemis/tests/extras/byteman/RaceOnSyncLargeMessageOverReplicationTest.java
----------------------------------------------------------------------
diff --git a/tests/extra-tests/src/test/java/org/apache/activemq/artemis/tests/extras/byteman/RaceOnSyncLargeMessageOverReplicationTest.java b/tests/extra-tests/src/test/java/org/apache/activemq/artemis/tests/extras/byteman/RaceOnSyncLargeMessageOverReplicationTest.java
index 435f134..30fdcec 100644
--- a/tests/extra-tests/src/test/java/org/apache/activemq/artemis/tests/extras/byteman/RaceOnSyncLargeMessageOverReplicationTest.java
+++ b/tests/extra-tests/src/test/java/org/apache/activemq/artemis/tests/extras/byteman/RaceOnSyncLargeMessageOverReplicationTest.java
@@ -108,7 +108,7 @@ public class RaceOnSyncLargeMessageOverReplicationTest extends ActiveMQTestBase
 
       connection = (ActiveMQConnection) factory.createConnection();
       session = connection.createSession(true, Session.SESSION_TRANSACTED);
-      queue = session.createQueue("jms.queue.Queue");
+      queue = session.createQueue("Queue");
       producer = session.createProducer(queue);
 
    }