From bb360a01c8102b6df20dbb28c5c4953a1c037b9e Mon Sep 17 00:00:00 2001 From: Samuel Leathers Date: Thu, 1 Aug 2019 11:58:08 -0400 Subject: [PATCH] unlock dumper on exception --- explorer/python-api/explorer_python_api/ExplorerDumper.py | 1 + 1 file changed, 1 insertion(+) diff --git a/explorer/python-api/explorer_python_api/ExplorerDumper.py b/explorer/python-api/explorer_python_api/ExplorerDumper.py index 7749461c0f0..a41d1c8fd66 100644 --- a/explorer/python-api/explorer_python_api/ExplorerDumper.py +++ b/explorer/python-api/explorer_python_api/ExplorerDumper.py @@ -106,6 +106,7 @@ def dump(self): self.logger.error("Skipping processing because last dump is processing") except BaseException: self.logger.error("An error has occurred in dumping blocks to database!") + self.processing = False return False def getTip(self):