zeng-bohan commented on PR #1301: URL: https://github.com/apache/dubbo-samples/pull/1301#issuecomment-5676460626
Second re-trigger (`Dubbo 3.3`, attempt 2) also hit a Docker Hub flake, so I'm flagging it here instead of pushing another empty commit. Run: https://github.com/apache/dubbo-samples/actions/runs/34936004364 (head `8fa764c`) Failing job: `Integration Test (Java11, Job1)`, step `Run tests` ``` [3/22] [dubbo-samples-applevel-override:1/1] TEST FAILURE: Run tests timeout Total: 22, Success: 7, Failures: 1, Ignored: 14 ``` The root cause is in the container setup, before any test of this PR's module runs — pulling the `zookeeper` image failed: ``` zookeeper Error Head "https://registry-1.docker.io/v2/library/zookeeper/manifests/latest": Get "https://auth.docker.io/token?account=githubactions&scope=repository%3Alibrary%2Fzookeeper%3Apull&service=registry.docker.io": read tcp 10.1.0.86:52102->172.64.144.78:443: read: connection reset by peer ``` The dependency containers never started (`docker inspect ...` returned `[]`, `network ... not found`), so the shard timed out waiting for them. Same class of failure as run 34734122523, where Docker Hub returned a 502 while pulling `mysql:5.7.40`. Two reasons this is not the migration: - the failing case is `4-governance/dubbo-samples-applevel-override`, unrelated to this PR's module, and this shard runs JDK 11, so every case requiring JDK >= 17 (including the one this PR touches) is skipped in it; - every other shard in the same run is green — `Test Result (Java17)`, `(Java8)` and `(Java21)` all passed, and `Test Result (Java11)` only reports this shard's failure. Could someone with write access re-run the failed job? Thanks. -- 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]
