File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed
spring-webflux/src/main/java/org/springframework/web/reactive/function/client Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -79,7 +79,9 @@ final class DefaultWebClient implements WebClient {
79
79
private static final Mono <ClientResponse > NO_HTTP_CLIENT_RESPONSE_ERROR = Mono .error (
80
80
() -> new IllegalStateException ("The underlying HTTP client completed without emitting a response." ));
81
81
82
- private static final DefaultClientRequestObservationConvention DEFAULT_OBSERVATION_CONVENTION = new DefaultClientRequestObservationConvention ();
82
+ private static final DefaultClientRequestObservationConvention DEFAULT_OBSERVATION_CONVENTION =
83
+ new DefaultClientRequestObservationConvention ();
84
+
83
85
84
86
private final ExchangeFunction exchangeFunction ;
85
87
@@ -119,10 +121,10 @@ final class DefaultWebClient implements WebClient {
119
121
this .uriBuilderFactory = uriBuilderFactory ;
120
122
this .defaultHeaders = defaultHeaders ;
121
123
this .defaultCookies = defaultCookies ;
122
- this .observationRegistry = observationRegistry ;
123
- this .observationConvention = observationConvention ;
124
124
this .defaultRequest = defaultRequest ;
125
125
this .defaultStatusHandlers = initStatusHandlers (statusHandlerMap );
126
+ this .observationRegistry = observationRegistry ;
127
+ this .observationConvention = observationConvention ;
126
128
this .builder = builder ;
127
129
}
128
130
You can’t perform that action at this time.
0 commit comments