File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
spring-web/src/main/java/org/springframework/http/client/reactive Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -161,8 +161,8 @@ public LoopResources getLoopResources() {
161
161
162
162
/**
163
163
* Configure the amount of time we'll wait before shutting down resources.
164
- * If a task is submitted during the {@code quietPeriod }, it is guaranteed
165
- * to be accepted and the {@code quietPeriod } will start over.
164
+ * If a task is submitted during the {@code shutdownQuietPeriod }, it is guaranteed
165
+ * to be accepted and the {@code shutdownQuietPeriod } will start over.
166
166
* <p>By default, this is set to
167
167
* {@link LoopResources#DEFAULT_SHUTDOWN_QUIET_PERIOD} which is 2 seconds but
168
168
* can also be overridden with the system property
@@ -189,7 +189,7 @@ public void setShutdownQuietPeriod(Duration shutdownQuietPeriod) {
189
189
* @see #setShutdownQuietPeriod(Duration)
190
190
*/
191
191
public void setShutdownTimeout (Duration shutdownTimeout ) {
192
- Assert .notNull (shutdownTimeout , "shutdownQuietPeriod should not be null" );
192
+ Assert .notNull (shutdownTimeout , "shutdownTimeout should not be null" );
193
193
this .shutdownTimeout = shutdownTimeout ;
194
194
}
195
195
You can’t perform that action at this time.
0 commit comments