views: fix partition checks in script/run

Skip check of disk data in multi-disk clients in check for
uniform setup across all the clients selected.

Disk data should not be considered for client configuration
comparison.
master
Alejandro Sirgo Rica 2025-02-10 12:37:44 +01:00
parent 91465fc269
commit d840e4af37
1 changed files with 1 additions and 1 deletions

View File

@ -2084,7 +2084,7 @@ def action_run_script():
for ip in ips:
r = server.get('/client/setup', payload={'client': [ip]})
partitions = r.json()['partitions'][1:]
partitions = [p for p in r.json()['partitions'] if p['partition'] != 0]
if not reference_patitioning:
reference_patitioning = partitions
elif reference_patitioning != partitions: