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.
1 parent 7158acb commit e21d94fCopy full SHA for e21d94f
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