Skip to content

Commit 7a0e5a3

Browse files
committed
Update for reactor-core change
1 parent b0422d0 commit 7a0e5a3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

spring-web/src/main/java/org/springframework/http/server/reactive/ChannelSendOperator.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,10 +62,10 @@ public ChannelSendOperator(Publisher<? extends T> source, Function<Publisher<T>,
6262
@Nullable
6363
@SuppressWarnings("rawtypes")
6464
public Object scanUnsafe(Attr key) {
65-
if (key == IntAttr.PREFETCH) {
65+
if (key == Attr.PREFETCH) {
6666
return Integer.MAX_VALUE;
6767
}
68-
if (key == ScannableAttr.PARENT) {
68+
if (key == Attr.PARENT) {
6969
return this.source;
7070
}
7171
return null;

0 commit comments

Comments
 (0)