[Answered ]-Django, spawn worker process on start generates django.core.exceptions.AppRegistryNotReady: Apps aren't loaded yet

1๐Ÿ‘

โœ…

OK, after posting this directly on the Django forums, I was given some guidance. I basically had to break these off as "standalone" Django processes in order to allow them access into the Django ORM.

I had to setup a settings, and run django.setup() in each of the processes and shift any models imports into code that would run after that execution.

๐Ÿ‘คJimmy Fort

Leave a comment