This commit is contained in:
2024-04-09 12:32:05 +02:00
parent 0a85c6148e
commit d5684a4336
2 changed files with 8 additions and 9 deletions
+1 -1
View File
@@ -2229,7 +2229,7 @@ if __name__ == "__main__":
logger.info("Starting discord bot")
threads = []
threads.append(threading.Thread(target=client.run, args=(TOKEN,)))
threads.append(threading.Thread(target=communication_subroutine.comm_subroutine, args=(OUT_COMM_Q,IN_COMM_Q)))
#threads.append(threading.Thread(target=communication_subroutine.comm_subroutine, args=(OUT_COMM_Q,IN_COMM_Q)))
for worker in threads:
worker.start()
for worker in threads: