Fix resource monitoring should only be run in the main process when using threaded logging mode

This commit is contained in:
allegroai 2022-01-08 22:57:14 +02:00
parent 0191493864
commit afad2772b9

View File

@ -56,6 +56,9 @@ class ResourceMonitor(BackgroundMonitor):
pass
def daemon(self):
if self._is_thread_mode_and_not_main_process():
return
seconds_since_started = 0
reported = 0
last_iteration = 0