[Django]-Populate() isn't reentrant Django Google App Engine

0👍

I was facing the same issue and removing the database configuration for a sqlite database connection fixed this for me. Issue might’ve been that the sqlite library that django is looking for underneath was not present and thus, removing the sqlite configuration fixed that for me. pff, I was not using sqlite in that project any way.

However, as per a google groups thread I landed on, the error:

raise RuntimeError("populate() isn't reentrant")
  RuntimeError: populate() isn't reentrant

is caused when one of the application that you’re trying to load leads to an error within, which leads to this. I’ll provide a link to the thread here, and although it’s different from your problem(you probably solved it already), you might still find it useful:

Link to groups thread

The answer I was talking about

Hope you find it useful.

Leave a comment