dirkbig commented on a change in pull request #3971: NIFI-6997: consumeAMQP
closing connection when queue not found
URL: https://github.com/apache/nifi/pull/3971#discussion_r365272278
##########
File path:
nifi-nar-bundles/nifi-amqp-bundle/nifi-amqp-processors/src/main/java/org/apache/nifi/amqp/processors/ConsumeAMQP.java
##########
@@ -194,6 +194,13 @@ protected synchronized AMQPConsumer
createAMQPWorker(final ProcessContext contex
return amqpConsumer;
} catch (final IOException ioe) {
+ try {
+ connection.close();
+ getLogger().warn("Closed connection at port " +
connection.getPort());
+ } catch (final IOException ioe_close) {
Review comment:
thanks for the input, just changed it. Kept the log message to level WARN as
joewitt affirmed.
----------------------------------------------------------------
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.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services