ARTEMIS-2081 listConfiguredQueues returns only queues created by config
Move configuration managed in persister before consumer dispatch so then the fix can be applied in 2.6.x branch safely.
This commit is contained in:
parent
14617936dc
commit
efa48c9782
|
@ -326,6 +326,11 @@ public class PersistentQueueBindingEncoding implements EncodingSupport, QueueBin
|
|||
} else {
|
||||
lastValue = ActiveMQDefaultConfiguration.getDefaultLastValue();
|
||||
}
|
||||
if (buffer.readableBytes() > 0) {
|
||||
configurationManaged = buffer.readBoolean();
|
||||
} else {
|
||||
configurationManaged = false;
|
||||
}
|
||||
if (buffer.readableBytes() > 0) {
|
||||
consumersBeforeDispatch = buffer.readInt();
|
||||
} else {
|
||||
|
@ -336,11 +341,6 @@ public class PersistentQueueBindingEncoding implements EncodingSupport, QueueBin
|
|||
} else {
|
||||
delayBeforeDispatch = ActiveMQDefaultConfiguration.getDefaultDelayBeforeDispatch();
|
||||
}
|
||||
if (buffer.readableBytes() > 0) {
|
||||
configurationManaged = buffer.readBoolean();
|
||||
} else {
|
||||
configurationManaged = false;
|
||||
}
|
||||
if (buffer.readableBytes() > 0) {
|
||||
lastValueKey = buffer.readNullableSimpleString();
|
||||
} else {
|
||||
|
@ -365,9 +365,9 @@ public class PersistentQueueBindingEncoding implements EncodingSupport, QueueBin
|
|||
buffer.writeByte(routingType);
|
||||
buffer.writeBoolean(exclusive);
|
||||
buffer.writeBoolean(lastValue);
|
||||
buffer.writeBoolean(configurationManaged);
|
||||
buffer.writeInt(consumersBeforeDispatch);
|
||||
buffer.writeLong(delayBeforeDispatch);
|
||||
buffer.writeBoolean(configurationManaged);
|
||||
buffer.writeNullableSimpleString(lastValueKey);
|
||||
buffer.writeBoolean(nonDestructive);
|
||||
}
|
||||
|
@ -382,9 +382,9 @@ public class PersistentQueueBindingEncoding implements EncodingSupport, QueueBin
|
|||
DataConstants.SIZE_BYTE +
|
||||
DataConstants.SIZE_BOOLEAN +
|
||||
DataConstants.SIZE_BOOLEAN +
|
||||
DataConstants.SIZE_BOOLEAN +
|
||||
DataConstants.SIZE_INT +
|
||||
DataConstants.SIZE_LONG +
|
||||
DataConstants.SIZE_BOOLEAN +
|
||||
SimpleString.sizeofNullableString(lastValueKey) +
|
||||
DataConstants.SIZE_BOOLEAN;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue