From 93deb0a5847f235a1dcaeb462ab9fae20e689f6f Mon Sep 17 00:00:00 2001 From: Sam Brannen Date: Tue, 6 Jun 2023 11:54:38 +0200 Subject: [PATCH] Polishing --- .../springframework/scheduling/annotation/Scheduled.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/spring-context/src/main/java/org/springframework/scheduling/annotation/Scheduled.java b/spring-context/src/main/java/org/springframework/scheduling/annotation/Scheduled.java index 4e42490a38..4b8328fadd 100644 --- a/spring-context/src/main/java/org/springframework/scheduling/annotation/Scheduled.java +++ b/spring-context/src/main/java/org/springframework/scheduling/annotation/Scheduled.java @@ -38,9 +38,9 @@ import org.springframework.scheduling.config.ScheduledTaskRegistrar; * *

Methods that return a reactive {@code Publisher} or a type which can be adapted * to {@code Publisher} by the default {@code ReactiveAdapterRegistry} are supported. - * The {@code Publisher} must support multiple subsequent subscriptions (i.e. be cold). - * The returned {@code Publisher} is only produced once, and the scheduling infrastructure - * then periodically subscribes to it according to configuration. Values emitted by + * The {@code Publisher} must support multiple subsequent subscriptions. The returned + * {@code Publisher} is only produced once, and the scheduling infrastructure then + * periodically subscribes to it according to configuration. Values emitted by * the publisher are ignored. Errors are logged at {@code WARN} level, which * doesn't prevent further iterations. If a fixed delay is configured, the * subscription is blocked in order to respect the fixed delay semantics.