Skip to content
Open
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
Prev Previous commit
Next Next commit
chore: generate libraries at Wed Oct 8 02:31:58 UTC 2025
  • Loading branch information
cloud-java-bot committed Oct 8, 2025
commit b25c4103eca8b77cf8fa68b66ae32f3cd742ae95
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,8 @@ void stop() {
case WAIT_FOR_PROCESSING:
logger.log(
Level.FINE,
"WAIT_FOR_PROCESSING shutdown mode: Waiting for outstanding messages to complete processing.");
"WAIT_FOR_PROCESSING shutdown mode: Waiting for outstanding messages to complete"
+ " processing.");
java.time.Duration timeout = subscriberShutdownSettings.getTimeout();
if (timeout.isNegative()) {
// Indefinite wait use existing blocking wait
Expand All @@ -330,7 +331,8 @@ void stop() {
if (!completedWait) {
logger.log(
Level.WARNING,
"Grace period expired for WAIT_FOR_PROCESSING shutdown. Nacking remaining messages.");
"Grace period expired for WAIT_FOR_PROCESSING shutdown. Nacking remaining"
+ " messages.");
// Switch to NACK_IMMEDIATELY behavior for remaining messages
nackAllOutstandingMessages();
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -796,7 +796,8 @@ public Builder setOpenTelemetry(OpenTelemetry openTelemetry) {
* SubscriberShutdownSettings#newBuilder() default settings}.
*/
@BetaApi(
"The surface for SubscriberShutdownSettings is not stable yet and may be changed in the future.")
"The surface for SubscriberShutdownSettings is not stable yet and may be changed in the"
+ " future.")
public Builder setSubscriberShutdownSettings(
SubscriberShutdownSettings subscriberShutdownSettings) {
this.subscriberShutdownSettings = Preconditions.checkNotNull(subscriberShutdownSettings);
Expand Down

This file was deleted.

This file was deleted.

Loading