austince commented on a change in pull request #12001: URL: https://github.com/apache/flink/pull/12001#discussion_r421575576
########## File path: flink-connectors/flink-connector-rabbitmq/src/main/java/org/apache/flink/streaming/connectors/rabbitmq/RMQSink.java ########## @@ -121,7 +121,7 @@ public RMQSink(RMQConnectionConfig rmqConnectionConfig, SerializationSchema<IN> */ protected void setupQueue() throws IOException { if (queueName != null) { - channel.queueDeclare(queueName, false, false, false, null); + channel.queueDeclare(queueName, true, false, false, null); Review comment: I agree, thanks for the suggestion! ---------------------------------------------------------------- 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: us...@infra.apache.org