From 24f81beb6e98556233ff552645972400138ab446 Mon Sep 17 00:00:00 2001 From: joeaba <77398477+joeaba@users.noreply.github.com> Date: Fri, 31 Mar 2023 08:25:26 -0500 Subject: [PATCH] fix condition to exclude the metrics servers (#31000) --- .buildkite/hooks/post-checkout | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.buildkite/hooks/post-checkout b/.buildkite/hooks/post-checkout index 1a680832c..20e3c62e2 100644 --- a/.buildkite/hooks/post-checkout +++ b/.buildkite/hooks/post-checkout @@ -9,7 +9,7 @@ source ci/env.sh # ( containers=$(docker ps -q) - if [[ $(hostname) != metrics-solana-com && -n $containers ]]; then + if [[ $(hostname) != metrics-main && $(hostname) != metrics-internal && -n $containers ]]; then echo "+++ Killing stale docker containers" docker ps