Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ jobs:
<<: *anchor_build
- run:
name: Run mvn javadoc goal
command: mvn javadoc:jar javadoc:test-jar
command: mvn javadoc:javadoc javadoc:test-javadoc

workflows:
version: 2
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@
*
* <p>The subscriber handles the ack management, by automatically extending the ack deadline while
* the message is being processed, to then issue the ack or nack of such message when the processing
* is done. <strong>Note:</strong> message redelivery is still possible.
* is done (see {@link Builder#setMaxAckExtensionPeriod(Duration)}). <strong>Note:</strong> message redelivery is still possible.
*
* <p>It also provides customizable options that control:
*
Expand Down Expand Up @@ -547,7 +547,7 @@ Builder setAckExpirationPadding(Duration ackExpirationPadding) {
}

/**
* Set the maximum period a message ack deadline will be extended.
* Set the maximum period a message ack deadline will be extended. Defaults to one hour.
*
* <p>It is recommended to set this value to a reasonable upper bound of the subscriber time to
* process any message. This maximum period avoids messages to be <i>locked</i> by a subscriber
Expand Down