From b11059c33f5e8495b249e4bd3228946e9f2c2c7b Mon Sep 17 00:00:00 2001 From: "Joshua A. Anderson" Date: Thu, 22 Aug 2024 09:59:50 -0400 Subject: [PATCH] Fix validation script. --- validate/validate.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/validate/validate.py b/validate/validate.py index dab2a27..6766361 100644 --- a/validate/validate.py +++ b/validate/validate.py @@ -64,7 +64,7 @@ def get_cluster_name(): """Get the current cluster name.""" result = subprocess.run( - ['row', 'show', 'cluster', '--name'], capture_output=True, check=True, text=True + ['row', 'show', 'cluster', '--short'], capture_output=True, check=True, text=True ) return result.stdout.strip()