[#154] Change func search container

Signed-off-by: Dmitriy Zayakin <d.zayakin@yadro.com>
This commit is contained in:
Dmitriy Zayakin 2024-01-11 13:42:02 +03:00
parent a4d1082ed5
commit a3bda0b34f

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