periodic_action() # requires distributed locking and it's enough if it only runs ONCE every 1 hour threading.Thread(target=scheduler, daemon=True).start()
此代码运行在具有5个线程的多线程环境中(gunicorn线程)。periodic_actio
我正在尝试运行一个脚本,该脚本使用root.after()生成两个线程。sleep()似乎锁定了脚本。它永远不会看到由第二个root.after()设置的标志。from time import sleepFlag = False
global Flagwhile(Flag==False): print('Flag set')