Skip to content

Commit

Permalink
get correct env var name for insights connection string
Browse files Browse the repository at this point in the history
  • Loading branch information
ramonavic committed Sep 26, 2024
1 parent 2fa8ac4 commit 67598de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/main/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
DEBUG = os.getenv('DJANGO_DEBUG', False) in TRUE_VALUES
LOGGING_LEVEL = os.getenv('LOGGING_LEVEL', 'INFO')

AZURE_APPLICATION_INSIGHTS_CONNECTION_STRING = os.getenv('AZURE_APPLICATION_INSIGHTS_CONNECTION_STRING', None)
AZURE_APPLICATION_INSIGHTS_CONNECTION_STRING = os.getenv('APPLICATION_INSIGHTS_CONNECTION_STRING', None)

ALLOWED_HOSTS = os.getenv('ALLOWED_HOSTS', '127.0.0.1,0.0.0.0,localhost').split(',')

Expand Down

0 comments on commit 67598de

Please sign in to comment.