Skip to content

Commit

Permalink
Fix validation script.
Browse files Browse the repository at this point in the history
  • Loading branch information
joaander committed Aug 22, 2024
1 parent aee94ea commit b11059c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion validate/validate.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()

Expand Down

0 comments on commit b11059c

Please sign in to comment.