You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@nifi.apache.org by GitBox <gi...@apache.org> on 2020/01/10 14:56:08 UTC

[GitHub] [nifi] dirkbig commented on a change in pull request #3971: NIFI-6997: consumeAMQP closing connection when queue not found

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:
users@infra.apache.org


With regards,
Apache Git Services