AppRegistryNotReady: The translation infrastructure cannot be initialized

后端 未结 4 964
我在风中等你
我在风中等你 2021-02-12 08:55

When I try to access to my app, I\'m getting the following error.

AppRegistryNotReady: The translation infrastructure cannot be initialized before the a

4条回答
  •  别跟我提以往
    2021-02-12 09:37

    @hellsgate solution worked for me.

    Specifically from the link referenced by @hellsgate, I changed:

    module = django.core.handlers.wsgi:WSGIHandler()
    

    to

    module = django.core.wsgi:get_wsgi_application()
    

    in my vassals.ini file

提交回复
热议问题