Django populate() isn't reentrant

后端 未结 6 1945
一生所求
一生所求 2020-11-29 07:54

I keep getting this when I try to load my Django application on production . I tried all the stackoverflow answers but nothing has fixed it. Any other ideas. (I\'m usin

6条回答
  •  隐瞒了意图╮
    2020-11-29 08:55

    In the end the problem that I had was that I tried to run a second Django app and did not have the following defined in my apache config:

    WSGIDaemonProcess ...
    WSGIProcessGroup ...
    

    Just learned that you can run a single django app without defining them but when its two it produces a conflict.

提交回复
热议问题