[Django]-Numpy Runtime Warning causing Apache Workers to freeze in "Sending Reply" state

2👍

See:

From memory numpy is affected by a variant of that issue. Ensure you force the WSGI application to run in the main interpreter context.

2👍

Building from @Graham Dumpleton answer, just adding this line:

WSGIApplicationGroup %{GLOBAL}

to my application’s apache config file fixed the issue for me.

👤Peter

Leave a comment