This is an automated email from the ASF dual-hosted git repository.

lidavidm pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow-adbc.git


The following commit(s) were added to refs/heads/main by this push:
     new bc4e27393 chore(ci): retry mamba if it flakes a download (#4171)
bc4e27393 is described below

commit bc4e27393bbbf698658e23f659c6a70837eda7ba
Author: David Li <[email protected]>
AuthorDate: Fri Apr 3 08:56:46 2026 +0900

    chore(ci): retry mamba if it flakes a download (#4171)
---
 ci/scripts/remamba.sh | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/ci/scripts/remamba.sh b/ci/scripts/remamba.sh
index 9fdaec7a0..25420a857 100755
--- a/ci/scripts/remamba.sh
+++ b/ci/scripts/remamba.sh
@@ -42,6 +42,10 @@ main() {
             echo "Mamba flaked..."
             continue
         fi
+        if echo "$MAMBA_OUTPUT" | grep "Download error" >/dev/null; then
+            echo "Mamba flaked..."
+            continue
+        fi
         echo "Mamba failed, aborting"
         return $exit_code
     done

Reply via email to