From 51cf4dcba8024ee7dfe469d1ed1a60f6cafafe09 Mon Sep 17 00:00:00 2001 From: Noah S-C Date: Fri, 26 Jul 2024 19:13:27 +0100 Subject: [PATCH] fix(ci): reduce push_all concurrency even further due to ratelimits (#64111) :cry: ## Test plan CI ## Changelog --- dev/ci/push_all.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev/ci/push_all.sh b/dev/ci/push_all.sh index dff5516328a..428e74435da 100755 --- a/dev/ci/push_all.sh +++ b/dev/ci/push_all.sh @@ -206,7 +206,7 @@ echo "--- :bazel::docker: Pushing images..." log_file=$(mktemp) # shellcheck disable=SC2064 trap "rm -rf $log_file" EXIT -parallel --jobs=16 --line-buffer --joblog "$log_file" -v <"$job_file" +parallel --jobs=8 --line-buffer --joblog "$log_file" -v <"$job_file" # Pretty print the output from gnu parallel while read -r line; do