File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -225,9 +225,9 @@ def _check_node(n):
225
225
errors .append (f'Only { ok_dynnodes_count } from { dynnodes_count } dynnodes are ok: { dynnodes_errors } ' )
226
226
storage_nodes_count = nodes_by_role ['Storage' ]
227
227
ok_storage_nodes_count = ok_by_role ['Storage' ]
228
- if ok_storage_nodes_count < dynnodes_count :
228
+ if ok_storage_nodes_count < storage_nodes_count :
229
229
storage_nodes_errors = ',' .join (node_errors ['Tenant' ])
230
- errors .append (f'Only { ok_storage_nodes_count } from { storage_nodes_count } storage nodes are ok, but { dynnodes_count } need . { storage_nodes_errors } ' )
230
+ errors .append (f'Only { ok_storage_nodes_count } from { storage_nodes_count } storage nodes are ok. { storage_nodes_errors } ' )
231
231
paths_to_balance = []
232
232
if isinstance (balanced_paths , str ):
233
233
paths_to_balance += cls ._get_tables (balanced_paths )
You can’t perform that action at this time.
0 commit comments