Skip to content
Snippets Groups Projects
Commit db3c6958 authored by Michał Kudela's avatar Michał Kudela
Browse files

Fix problem in get_block_ids method - ignore exception handling

parent d5408d88
No related branches found
No related tags found
1 merge request!251Change type of `checkpoint` member in NodeConfig class & repair get_block_ids method
......@@ -247,9 +247,10 @@ class BlockLog:
output = ""
block_files = self.__block_files_force()
for file in block_files:
output = self.__run_and_get_output(
"--get-block-ids", "-n", f"{block_number}", "--block-log", str(file)
).replace("'", '"')
with contextlib.suppress(BlockLogUtilError):
output = self.__run_and_get_output(
"--get-block-ids", "-n", f"{block_number}", "--block-log", str(file)
).replace("'", '"')
if expected_str in output:
return output[len(expected_str) :]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment