[Answered ]-Accessing Sentry models in my Django Project

2👍

If anyone ever comes across with this question, I managed to solve the issue by replacing subprocess.call by subprocess.Popen

The cool thing about Popen is that you can specify the environment of the process with the argument “env”

So

my_env = os.environ
my_env["DJANGO_SETTINGS_MODULE"] = "sentry_configuration_file"

result = Popen(command, shell=True, env=my_env)

Worked like a charm.

Leave a comment