pingtimeout opened a new pull request, #3393: URL: https://github.com/apache/polaris/pull/3393
During workflow development, I ran into issues like this one during Helm charts build job: ``` svn: E170013: Unable to connect to a repository at URL 'https://dist.apache.org/repos/dist/dev/incubator/polaris' svn: E000110: Error running context: Connection timed out Error: Process completed with exit code 1. ``` Example: https://github.com/pingtimeout/polaris/actions/runs/20792183122/job/59719038791 This is not expected as there is another job in the same workflow that executes the same `svn checkout` command and succeeds. I suspect a rate limit on ASF Infra side. This PR adds a sleep-then-retry mechanism to workflows so that they do not fail immediately. Here is an example of a successful run. Unfortunately, that time, the rate limit did not trigger, so it only shows that the workflow continue running identically with the code change: https://github.com/pingtimeout/polaris/actions/runs/20825202531/job/59827207724 -- 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]
