mirror of https://github.com/apache/activemq.git
This commit is contained in:
parent
a3a41dae37
commit
c8a5fb769e
|
@ -158,6 +158,7 @@ public class AmqpNioTransportHelper {
|
||||||
} else {
|
} else {
|
||||||
transportSupport.doConsume(AmqpSupport.toBuffer(currentBuffer));
|
transportSupport.doConsume(AmqpSupport.toBuffer(currentBuffer));
|
||||||
}
|
}
|
||||||
|
currentBuffer = null;
|
||||||
|
|
||||||
if (plain.hasRemaining()) {
|
if (plain.hasRemaining()) {
|
||||||
if (plain.remaining() < 4) {
|
if (plain.remaining() < 4) {
|
||||||
|
@ -167,8 +168,8 @@ public class AmqpNioTransportHelper {
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
nextFrameSize = -1;
|
nextFrameSize = -1;
|
||||||
currentBuffer = null;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return nextFrameSize;
|
return nextFrameSize;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -42,7 +42,6 @@ import org.objectweb.jtests.jms.conform.topic.TemporaryTopicTest;
|
||||||
/**
|
/**
|
||||||
* Run the JoramJmsTests using amqp+nio
|
* Run the JoramJmsTests using amqp+nio
|
||||||
*/
|
*/
|
||||||
@Ignore("AMQ-5094")
|
|
||||||
@RunWith(Suite.class)
|
@RunWith(Suite.class)
|
||||||
@Suite.SuiteClasses({
|
@Suite.SuiteClasses({
|
||||||
// TopicSessionTest.class, // Hangs, see https://issues.apache.org/jira/browse/PROTON-154
|
// TopicSessionTest.class, // Hangs, see https://issues.apache.org/jira/browse/PROTON-154
|
||||||
|
|
Loading…
Reference in New Issue