cmick commented on a change in pull request #16023:
URL: https://github.com/apache/flink/pull/16023#discussion_r654991564
##########
File path:
flink-connectors/flink-connector-rabbitmq/src/main/java/org/apache/flink/streaming/connectors/rabbitmq/common/RMQConnectionConfig.java
##########
@@ -265,6 +279,16 @@ public Integer getRequestedHeartbeat() {
return Optional.ofNullable(prefetchCount);
}
+ /**
+ * Retrieve the next message delivery timeout used in the queueing
consumer. If not specified
+ * explicitly, the default value of 30000 milliseconds will be returned.
+ *
+ * @return the next message delivery timeout, in milliseconds; zero for
unlimited
+ */
+ public long getDeliveryTimeout() {
+ return
Optional.ofNullable(deliveryTimeout).orElse(DEFAULT_DELIVERY_TIMEOUT);
Review comment:
Changed in 0b2a495
--
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]