Flask app “Restarting with stat”

后端 未结 4 944
醉梦人生
醉梦人生 2020-12-01 04:02

I\'ve built a few Flask apps, but on my latest project I noticed something a little strange in development mode. The second line of the usual message in the terminal which

4条回答
  •  隐瞒了意图╮
    2020-12-01 04:57

    Check your version of Werkzeug. Version 0.10 was just released and numerous changes went into the reloader. One change is that a default polling reloader is used; the old pyinotify reloader was apparently inaccurate. If you want more efficient polling, install the watchdog package. You can see the code related to this here.

    When Werkzeug can't find watchdog, it uses the stat reloader, otherwise it uses whatever reloader watchdog uses, which can vary by platform. This message is just so you know which one is in use.


    Watchdog may not be compatible with gevent. If you're using gevent and having issues with the reloader when using Watchdog, check this GitHub issue.

提交回复
热议问题