Skip to content

Commit

Permalink
🐛(dogwood|eucalyptus) add missing RELEASE setting
Browse files Browse the repository at this point in the history
Recent releases have no RELEASE setting defined. This settings is
unfortunately required to make Sentry messages relevant.
  • Loading branch information
jmaupetit committed Nov 29, 2019
1 parent 1e6c30a commit 4df62d2
Show file tree
Hide file tree
Showing 9 changed files with 20 additions and 6 deletions.
4 changes: 4 additions & 0 deletions releases/dogwood/3/bare/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ release.

## [Unreleased]

### Fixed

- Add missing RELEASE setting

## [dogwood.3-1.1.0] - 2019-10-10

### Changed
Expand Down
5 changes: 2 additions & 3 deletions releases/dogwood/3/bare/config/cms/docker_run_production.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@

############### ALWAYS THE SAME ################################

RELEASE = config("RELEASE", default=None)
DEBUG = False

EMAIL_BACKEND = "django_ses.SESBackend"
Expand Down Expand Up @@ -210,9 +211,7 @@
"COURSES_WITH_UNSAFE_CODE", default=[], formatter=json.loads
)

LOCALE_PATHS = config(
"LOCALE_PATHS", default=LOCALE_PATHS, formatter=json.loads
)
LOCALE_PATHS = config("LOCALE_PATHS", default=LOCALE_PATHS, formatter=json.loads)

ASSET_IGNORE_REGEX = config("ASSET_IGNORE_REGEX", default=ASSET_IGNORE_REGEX)

Expand Down
5 changes: 2 additions & 3 deletions releases/dogwood/3/bare/config/lms/docker_run_production.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@

################################ ALWAYS THE SAME ##############################

RELEASE = config("RELEASE", default=None)
DEBUG = False
DEFAULT_TEMPLATE_ENGINE["OPTIONS"]["debug"] = False

Expand Down Expand Up @@ -415,9 +416,7 @@
"COURSES_WITH_UNSAFE_CODE", default=[], formatter=json.loads
)

LOCALE_PATHS = config(
"LOCALE_PATHS", default=LOCALE_PATHS, formatter=json.loads
)
LOCALE_PATHS = config("LOCALE_PATHS", default=LOCALE_PATHS, formatter=json.loads)

ASSET_IGNORE_REGEX = config("ASSET_IGNORE_REGEX", default=ASSET_IGNORE_REGEX)

Expand Down
4 changes: 4 additions & 0 deletions releases/dogwood/3/fun/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ release.

## [Unreleased]

### Fixed

- Add missing RELEASE setting

## [dogwood.3-fun-1.2.0] - 2019-11-22

### Added
Expand Down
1 change: 1 addition & 0 deletions releases/dogwood/3/fun/config/cms/docker_run_production.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@

############### ALWAYS THE SAME ################################

RELEASE = config("RELEASE", default=None)
DEBUG = False

EMAIL_BACKEND = "django_ses.SESBackend"
Expand Down
1 change: 1 addition & 0 deletions releases/dogwood/3/fun/config/lms/docker_run_production.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@

################################ ALWAYS THE SAME ##############################

RELEASE = config("RELEASE", default=None)
DEBUG = False
DEFAULT_TEMPLATE_ENGINE["OPTIONS"]["debug"] = False

Expand Down
4 changes: 4 additions & 0 deletions releases/eucalyptus/3/bare/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ release.

## [Unreleased]

### Fixed

- Add missing RELEASE setting

## [eucalyptus.3-1.0.0] - 2019-11-06

### Added
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@

############### ALWAYS THE SAME ################################

RELEASE = config("RELEASE", default=None)
DEBUG = False

EMAIL_BACKEND = "django_ses.SESBackend"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@

################################ ALWAYS THE SAME ##############################

RELEASE = config("RELEASE", default=None)
DEBUG = False
DEFAULT_TEMPLATE_ENGINE["OPTIONS"]["debug"] = False

Expand Down

0 comments on commit 4df62d2

Please sign in to comment.