Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,11 @@
*/
class PropertiesWebClientHttpServiceGroupConfigurer implements WebClientHttpServiceGroupConfigurer {

/**
* The default order for the PropertiesWebClientHttpServiceGroupConfigurer.
*/
private static final int DEFAULT_ORDER = Ordered.HIGHEST_PRECEDENCE + 10;

private final HttpServiceClientProperties properties;

private final HttpClientSettingsPropertyMapper clientSettingsPropertyMapper;
Expand All @@ -65,7 +70,7 @@ class PropertiesWebClientHttpServiceGroupConfigurer implements WebClientHttpServ

@Override
public int getOrder() {
return Ordered.HIGHEST_PRECEDENCE;
return DEFAULT_ORDER;
}

@Override
Expand Down
Loading