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()