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 18:46:50 UTC

[2/3] activemq-artemis git commit: Fix LargeMessageOverReplicationTest

Fix LargeMessageOverReplicationTest

It's not necessary to prefix the queue name with "jms.queue." when
creating a queue with a JMS session.


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

Branch: refs/heads/master
Commit: 9accf6275388890a81751ee466acba508ebfface
Parents: cbfd819
Author: jbertram <jb...@apache.org>
Authored: Wed May 4 13:34:43 2016 -0500
Committer: jbertram <jb...@apache.org>
Committed: Wed May 4 13:44:56 2016 -0500

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


http://git-wip-us.apache.org/repos/asf/activemq-artemis/blob/9accf627/tests/extra-tests/src/test/java/org/apache/activemq/artemis/tests/extras/byteman/LargeMessageOverReplicationTest.java
----------------------------------------------------------------------
diff --git a/tests/extra-tests/src/test/java/org/apache/activemq/artemis/tests/extras/byteman/LargeMessageOverReplicationTest.java b/tests/extra-tests/src/test/java/org/apache/activemq/artemis/tests/extras/byteman/LargeMessageOverReplicationTest.java
index beb8b20..75ba5dc 100644
--- a/tests/extra-tests/src/test/java/org/apache/activemq/artemis/tests/extras/byteman/LargeMessageOverReplicationTest.java
+++ b/tests/extra-tests/src/test/java/org/apache/activemq/artemis/tests/extras/byteman/LargeMessageOverReplicationTest.java
@@ -104,7 +104,7 @@ public class LargeMessageOverReplicationTest extends ActiveMQTestBase {
       waitForRemoteBackup(connection.getSessionFactory(), 30);
 
       session = connection.createSession(true, Session.SESSION_TRANSACTED);
-      queue = session.createQueue("jms.queue.Queue");
+      queue = session.createQueue("Queue");
       producer = session.createProducer(queue);
 
    }