adoroszlai opened a new pull request, #11282: URL: https://github.com/apache/ozone/pull/11282
## What changes were proposed in this pull request? Fix intermittent failure in `acceptance (upgrade)` test: ``` --- RUNNING WITH OLD VERSION 2.2.1 --- Port 88 is available on kdc Port 9860 is not available on scm3 yet ... Timed out waiting on scm3 9860 to become available ``` Upgrade test picks the first SCM from Docker Compose output, which may be any of the three. `scm3` may take longer than 2 minutes to be up, because instances are started in order: https://github.com/apache/ozone/blob/8bc575ca1566125475d12cdfb0a3a2b238e0fb61/hadoop-ozone/dist/src/main/compose/upgrade/compose/ha/docker-compose.yaml#L155 https://github.com/apache/ozone/blob/8bc575ca1566125475d12cdfb0a3a2b238e0fb61/hadoop-ozone/dist/src/main/compose/upgrade/compose/ha/docker-compose.yaml#L171 This change makes output ordered to ensure `scm1` is preferred, if available. https://issues.apache.org/jira/browse/HDDS-16518 ## How was this patch tested? CI: ``` Port 9860 is available on scm1 ``` https://github.com/adoroszlai/ozone/actions/runs/35490768774/job/106026794273#step:13:48 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
