From b7ac558035d8db8039f9bab0005645a73be39700 Mon Sep 17 00:00:00 2001 From: Adam Johnson Date: Sat, 30 Sep 2017 21:15:47 -0400 Subject: [PATCH] Fix verbose logging crash It appears that when the progress logger was broken up into separate classes, the progress_end function was not properly split and some threading functionality remained in the base class. --- korman/exporter/logger.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/korman/exporter/logger.py b/korman/exporter/logger.py index 059e04b..4d95de8 100644 --- a/korman/exporter/logger.py +++ b/korman/exporter/logger.py @@ -84,10 +84,6 @@ class _ExportLogger: export_time = time.perf_counter() - self._time_start_overall self.msg("\nExported '{}' in {:.2f}s", self._age_path.name, export_time) - # Ensure the got dawg thread goes good-bye - self._thread.join(timeout=5.0) - assert not self._thread.is_alive() - def progress_increment(self): pass