summaryrefslogtreecommitdiff
path: root/java/cluster/src/test
diff options
context:
space:
mode:
authorKim van der Riet <kpvdr@apache.org>2006-12-22 17:00:28 +0000
committerKim van der Riet <kpvdr@apache.org>2006-12-22 17:00:28 +0000
commit5129ac060aed57d8e31a62c3cd64ff0ad8995949 (patch)
tree12616b7ae0cc57d7c3fb88025fd05cf31686d51a /java/cluster/src/test
parent142d35580b326c99a306f6476ff0a0b723db920e (diff)
downloadqpid-python-5129ac060aed57d8e31a62c3cd64ff0ad8995949.tar.gz
AMQP version using new generator - Part 1. In these changes, all places where version-specific info is required, it has been hard-wired to major=8, minor=0. The next phase of changes will connect the version info to that obtained from ProtocolInitiation for the current session.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@489691 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'java/cluster/src/test')
-rw-r--r--java/cluster/src/test/java/org/apache/qpid/server/cluster/BrokerTest.java3
1 files changed, 3 insertions, 0 deletions
diff --git a/java/cluster/src/test/java/org/apache/qpid/server/cluster/BrokerTest.java b/java/cluster/src/test/java/org/apache/qpid/server/cluster/BrokerTest.java
index f7fe5dc35a..ed18710c64 100644
--- a/java/cluster/src/test/java/org/apache/qpid/server/cluster/BrokerTest.java
+++ b/java/cluster/src/test/java/org/apache/qpid/server/cluster/BrokerTest.java
@@ -148,6 +148,9 @@ public class BrokerTest extends TestCase
TestMethod(Object id)
{
+ // AMQP version change: Hardwire the version to 0-8 (major=8, minor=0)
+ // TODO: Connect this to the session version obtained from ProtocolInitiation for this session.
+ super((byte)8, (byte)0);
this.id = id;
}