You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(java-devel): Apply Maven retry settings under connector.* keys used by Maven 3.9
#1584 added HTTP retry settings (retryHandler.count/interval/intervalMax) under the aether.transport.http.* keys. That prefix is the maven-resolver 2.x / Maven 4 spelling; we build with Maven 3.9.16 (maven-resolver 1.9.27), which only reads aether.connector.http.*, so those settings currently have no effect.
Add the connector.* spelling alongside the transport.* one so the retries actually apply today, mirroring how connectionMaxTtl is already dual-spelled.
CI Maven failures are connection-level (stale keep-alive connections dropped by the network; no server-side 5xx in Nexus/Apache logs). maven-resolver's retry handler retries these IOExceptions, so this makes the intended retry behaviour effective. Key names verified against ConfigurationProperties.java @ maven-resolver-1.9.27.
Copy file name to clipboardExpand all lines: CHANGELOG.md
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -31,6 +31,7 @@ All notable changes to this project will be documented in this file.
31
31
32
32
### Changed
33
33
34
+
- java-devel: Apply the Maven HTTP retry settings under the `aether.connector.*` keys read by Maven 3.9 so they actually take effect; the previously added `aether.transport.*` keys are Maven 4 only ([#1591]).
34
35
- airflow: Bump statsd_exporter to `0.30.0` ([#1524]).
35
36
- ci: Bump `docker/login-action` from `v3.6.0` to `v4.1.0` and `stackabletech/actions` to `v0.14.3` to escape Node.js 20 deprecation ([#1507]).
36
37
- ci: Bump `stackabletech/actions` to `v0.16.0` ([#1559]).
@@ -104,6 +105,7 @@ All notable changes to this project will be documented in this file.
0 commit comments