[#154] Change func search container

Signed-off-by: Dmitriy Zayakin <d.zayakin@yadro.com>
master
Dmitriy Zayakin 2024-01-11 13:42:02 +03:00
parent a4d1082ed5
commit a3bda0b34f
1 changed files with 6 additions and 4 deletions

View File

@ -231,8 +231,10 @@ def search_nodes_with_bucket(
shell: Shell,
endpoint: str,
) -> list[ClusterNode]:
cid = search_container_by_name(name=bucket_name, cluster=cluster)
nodes_list = search_nodes_with_container(
wallet=wallet, cid=cid, shell=shell, endpoint=endpoint, cluster=cluster
)
cid = None
for cluster_node in cluster.cluster_nodes:
cid = search_container_by_name(name=bucket_name, node=cluster_node)
if cid:
break
nodes_list = search_nodes_with_container(wallet=wallet, cid=cid, shell=shell, endpoint=endpoint, cluster=cluster)
return nodes_list