Fixing time mismatch

This commit is contained in:
2024-08-09 16:59:33 +02:00
parent 8c6e80d832
commit fcefaf11ef
+4 -1
View File
@@ -568,10 +568,13 @@ if __name__ == "__main__":
# threads.append(threading.Thread(target=flask_debug))
threads.append(threading.Thread(target=waitress_run))
threads.append(threading.Thread(target=thread_rescan))
threads.append(threading.Thread(target=scan_tracks))
for worker in threads:
worker.start()
time.sleep(60)
threads.append(threading.Thread(target=scan_tracks))
threads[2].start()
for worker in threads:
worker.join()