Skip to content

Commit

Permalink
fixup! Update env check condition for development in gunicorn.config.py
Browse files Browse the repository at this point in the history
  • Loading branch information
aaronxsu committed Dec 19, 2024
1 parent d7b616f commit 797b61f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/django/gunicorn.conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

ENVIRONMENT = os.getenv("DJANGO_ENV", "dev")

if ENVIRONMENT == "dev":
if ENVIRONMENT == "development":
reload = True
else:
preload = True
Expand Down

0 comments on commit 797b61f

Please sign in to comment.