Fix supportsRequestAttributes for RestClientAdapter
Previously, RestClientAdapter claimed that it supports request attributes when, in fact, it does not. This commit updates the implementation accordingly. See gh-32232
This commit is contained in:
committed by
Stéphane Nicoll
parent
a2000dba33
commit
eebdff23e7
@@ -55,7 +55,7 @@ public final class RestClientAdapter implements HttpExchangeAdapter {
|
||||
|
||||
@Override
|
||||
public boolean supportsRequestAttributes() {
|
||||
return true;
|
||||
return false;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
||||
Reference in New Issue
Block a user