fix a sleep statement in the gc thread

This commit is contained in:
jkhsjdhjs 2023-07-16 22:25:35 +00:00
parent e6f8dbd1e8
commit a291010ae1

View File

@ -568,7 +568,7 @@ def gc_cycle():
# fire the garbage collector
gc.set_debug(gc.DEBUG_STATS)
gc.collect()
time.sleep(120)
sleep(120)
except Exception as err:
print("Error in garbage collector! - "+str(err))