mirror of https://git.48k.eu/ogcp
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
parent
91465fc269
commit
d840e4af37
|
@ -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:
|
||||
|
|
Loading…
Reference in New Issue