diff --git a/Makefile b/Makefile index 089d472bea50..ee3d51347202 100644 --- a/Makefile +++ b/Makefile @@ -7,6 +7,8 @@ pre-requirements pull pull_translations push_translations requirements shell swagger \ technical-docs test-requirements ubuntu-requirements upgrade-package upgrade + + # Careful with mktemp syntax: it has to work on Mac and Ubuntu, which have differences. PRIVATE_FILES := $(shell mktemp -u /tmp/private_files.XXXXXX) diff --git a/lms/envs/production.py b/lms/envs/production.py index 0233fce6a59e..045fe59d4d02 100644 --- a/lms/envs/production.py +++ b/lms/envs/production.py @@ -343,6 +343,7 @@ def get_env_setting(setting): COURSES_WITH_UNSAFE_CODE = ENV_TOKENS.get("COURSES_WITH_UNSAFE_CODE", []) + # Event Tracking if "TRACKING_IGNORE_URL_PATTERNS" in ENV_TOKENS: TRACKING_IGNORE_URL_PATTERNS = ENV_TOKENS.get("TRACKING_IGNORE_URL_PATTERNS")