Fixed workers to always run after summary loaded.

- Provided there is work to do.
This commit is contained in:
Andrew Hamilton 2021-04-13 18:38:42 +10:00
parent 7da50f5a29
commit 65e136941b

View file

@ -367,6 +367,7 @@ class Summary:
duration = time.time() - start_time duration = time.time() - start_time
log.log_message(f"Finished loading summary. {round(duration, 2)} secs") log.log_message(f"Finished loading summary. {round(duration, 2)} secs")
self.is_loaded = True self.is_loaded = True
self.closest_placeholder_generator = None
log.log_message("Started sync with filesystem…") log.log_message("Started sync with filesystem…")
start_time = time.time() start_time = time.time()
all_paths = set() all_paths = set()