Skip to content

Commit

Permalink
fix: Pull correct key from platform settings (#33)
Browse files Browse the repository at this point in the history
A typo was preventing the segment key from being properly taken from
settings.
  • Loading branch information
Tj-Tracy authored Oct 29, 2021
1 parent c1d86d2 commit c003507
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ Change Log
Unreleased
~~~~~~~~~~

[0.10.2] - 2021-10-30
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
* fix analytics key

[0.10.1] - 2021-10-29
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Expand Down
2 changes: 1 addition & 1 deletion notices/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
An edx-platform plugin which manages notices that must be acknowledged.
"""

__version__ = "0.10.1"
__version__ = "0.10.2"

default_app_config = "notices.apps.NoticesConfig" # pylint: disable=invalid-name
2 changes: 1 addition & 1 deletion notices/settings/production.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,5 @@ def plugin_settings(settings):
"NOTICES_SNOOZE_COUNT_LIMIT", settings.FEATURES["NOTICES_SNOOZE_COUNT_LIMIT"]
)
settings.FEATURES["NOTICES_SEGMENT_KEY"] = settings.AUTH_TOKENS.get(
"NOTICES_SEGMENT_KEY", settings.FEATURES["NOTICES_SEGMENT_KEY"]
"SEGMENT_KEY", settings.FEATURES["NOTICES_SEGMENT_KEY"]
)

0 comments on commit c003507

Please sign in to comment.