Github user joewitt commented on a diff in the pull request:
https://github.com/apache/nifi/pull/3053#discussion_r223748531
--- Diff:
nifi-nar-bundles/nifi-jms-bundle/nifi-jms-processors/src/main/java/org/apache/nifi/jms/processors/JMSPublisher.java
---
@@ -89,11 +89,14 @@ void setMessageHeaderAndProperties(final Message
message, final Map<String, Stri
for (Entry<String, String> entry :
flowFileAttributesToSend.entrySet()) {
try {
if (entry.getKey().equals(JmsHeaders.DELIVERY_MODE)) {
-
message.setJMSDeliveryMode(Integer.parseInt(entry.getValue()));
+ this.jmsTemplate.setExplicitQosEnabled(true);
--- End diff --
are setting these values explicitly and without any configurability going
to limit usage of these processors for certain JMS brokers?
---