gemmellr commented on code in PR #4586:
URL: https://github.com/apache/activemq-artemis/pull/4586#discussion_r1307133455
##########
artemis-core-client/src/main/java/org/apache/activemq/artemis/core/protocol/core/impl/wireformat/CreateQueueMessage_V2.java:
##########
@@ -450,6 +468,9 @@ public void decodeRest(final ActiveMQBuffer buffer) {
if (buffer.readableBytes() > 0) {
groupRebalancePauseDispatch =
BufferHelper.readNullableBoolean(buffer);
}
+ if (buffer.readableBytes() > 0) {
+ internal = BufferHelper.readNullableBoolean(buffer);
+ }
Review Comment:
Should it be possible for clients to remotely create 'internal' queues? I
don't really see why we would want/need that to be possible now at this point
when it hasnt been before? Also, is there any kind of access control needed on
it?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]