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:
Olga MaciaszekSharma 2024-02-09 15:00:35 +01:00 committed by Stéphane Nicoll
parent a2000dba33
commit eebdff23e7
1 changed files with 1 additions and 1 deletions

View File

@ -55,7 +55,7 @@ public final class RestClientAdapter implements HttpExchangeAdapter {
@Override
public boolean supportsRequestAttributes() {
return true;
return false;
}
@Override