Skip to content

Commit 5bc597a

Browse files
authored
Pass WarmUpLoadBalancer constructor params in the correct order (#1147)
* Pass constructor params in the correct order * Updated changelog
1 parent f53250a commit 5bc597a

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@ and what APIs have changed, if applicable.
1414

1515
## [Unreleased]
1616

17+
## [29.85.5] - 2026-02-24
18+
- Pass WarmUpLoadBalancer constructor params in the correct order
19+
1720
## [29.85.4] - 2026-02-19
1821
Fix server certificate lookup for HTTP/2 streams by checking both the channel and parent channel
1922

@@ -5967,7 +5970,8 @@ patch operations can re-use these classes for generating patch messages.
59675970

59685971
## [0.14.1]
59695972

5970-
[Unreleased]: https://github.com/linkedin/rest.li/compare/v29.85.4...master
5973+
[Unreleased]: https://github.com/linkedin/rest.li/compare/v29.85.5...master
5974+
[29.85.5]: https://github.com/linkedin/rest.li/compare/v29.85.4...v29.85.5
59715975
[29.85.4]: https://github.com/linkedin/rest.li/compare/v29.85.3...v29.85.4
59725976
[29.85.3]: https://github.com/linkedin/rest.li/compare/v29.85.2...v29.85.3
59735977
[29.85.2]: https://github.com/linkedin/rest.li/compare/v29.85.1...v29.85.2

d2/src/main/java/com/linkedin/d2/xds/balancer/XdsLoadBalancerWithFacilitiesFactory.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ public LoadBalancerWithFacilities create(D2ClientConfig config)
102102
config.xdsExecutorService, config.indisDownstreamServicesFetcher)
103103
: config.indisDownstreamServicesFetcher;
104104
balancer = new WarmUpLoadBalancer(balancer, xdsLoadBalancer, config.indisStartUpExecutorService, config.indisFsBasePath,
105-
config.d2ServicePath, downstreamServicesFetcher, config.indisWarmUpConcurrentRequests, config.indisWarmUpTimeoutSeconds,
105+
config.d2ServicePath, downstreamServicesFetcher, config.indisWarmUpTimeoutSeconds, config.indisWarmUpConcurrentRequests,
106106
config.dualReadStateManager, true, config.d2CalleeInfoRecorder);
107107
}
108108

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version=29.85.4
1+
version=29.85.5
22
group=com.linkedin.pegasus
33
org.gradle.configureondemand=true
44
org.gradle.parallel=true

0 commit comments

Comments
 (0)