Github user clebertsuconic commented on a diff in the pull request:
https://github.com/apache/activemq-artemis/pull/672#discussion_r72982711
--- Diff:
artemis-core-client/src/main/java/org/apache/activemq/artemis/core/protocol/core/impl/RemotingConnectionImpl.java
---
@@ -387,4 +388,15 @@ public void setClientID(String cID) {
public String getClientID() {
return clientID;
}
+
+ @Override
+ public void killMessage(SimpleString nodeID) throws ActiveMQException {
+ if (clientVersion <
DisconnectConsumerWithKillMessage.VERSION_INTRODUCED) {
+ throw new ActiveMQException(String.valueOf(clientVersion));
--- End diff --
do not throw anything.. simply ignore it and close the client accordingly.
no semantic change should be made
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---