We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 7158acb + e21d94f commit 49bbbb0Copy full SHA for 49bbbb0
spring-web/src/main/java/org/springframework/http/server/reactive/AbstractServerHttpResponse.java
@@ -225,8 +225,8 @@ protected Mono<Void> doCommit(@Nullable Supplier<? extends Mono<Void>> writeActi
225
this.commitActions.add(writeAction);
226
}
227
Flux<Void> commit = Flux.empty();
228
- for (Supplier<? extends Mono<Void>> actions : this.commitActions) {
229
- commit = commit.concatWith(actions.get());
+ for (Supplier<? extends Mono<Void>> action : this.commitActions) {
+ commit = commit.concatWith(action.get());
230
231
return commit.then();
232
0 commit comments