Skip to content

Commit 6719b46

Browse files
committed
Merge branch '4.0.x'
Closes gh-50843
2 parents bda8f2e + 5439c67 commit 6719b46

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

module/spring-boot-webclient/src/main/java/org/springframework/boot/webclient/autoconfigure/service/PropertiesWebClientHttpServiceGroupConfigurer.java

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,11 @@
4747
*/
4848
class PropertiesWebClientHttpServiceGroupConfigurer implements WebClientHttpServiceGroupConfigurer {
4949

50+
/**
51+
* The default order for the PropertiesWebClientHttpServiceGroupConfigurer.
52+
*/
53+
private static final int DEFAULT_ORDER = Ordered.HIGHEST_PRECEDENCE + 10;
54+
5055
private final HttpServiceClientProperties properties;
5156

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

6671
@Override
6772
public int getOrder() {
68-
return Ordered.HIGHEST_PRECEDENCE;
73+
return DEFAULT_ORDER;
6974
}
7075

7176
@Override

0 commit comments

Comments
 (0)