This commit is contained in:
olgavrou 2020-03-02 12:00:09 +00:00 коммит произвёл GitHub
Родитель 16b0b36285
Коммит 8a9e535562
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
2 изменённых файлов: 8 добавлений и 4 удалений

3
.gitignore поставляемый
Просмотреть файл

@ -9,6 +9,7 @@ libuv/
raft_tests.md
tests/raft_scenarios
*.pyc
__pycache__/
sphinx/build/
tests/Testing/
doxygen/
@ -18,4 +19,4 @@ tests/env/
getting_started/create_vm/generated
sphinx/env/
html/
latex/
latex/

Просмотреть файл

@ -317,9 +317,12 @@ class Consortium:
):
exists = False
for _ in range(timeout):
if self._check_node_exists(remote_node, node_id, node_status):
exists = True
break
try:
if self._check_node_exists(remote_node, node_id, node_status):
exists = True
break
except TimeoutError:
LOG.warning(f"Node {node_id} has not been recorded in the store yet")
time.sleep(1)
if not exists:
raise TimeoutError(