Skip to content

Commit

Permalink
fix loading SHARE_LEGACY_PIPELINE setting
Browse files Browse the repository at this point in the history
  • Loading branch information
aaxelb committed Feb 16, 2021
1 parent 5dd2cc8 commit 6c356c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion project/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -542,7 +542,7 @@ def route_urgent_task(name, args, kwargs, options, task=None, **kw):
SUBJECT_SYNONYMS_JSON = 'share/models/synonyms.json'

# if false, will skip disambiguation, building ChangeSets, and updating ShareObjects
SHARE_LEGACY_PIPELINE = os.environ.get('SHARE_LEGACY_PIPELINE', True)
SHARE_LEGACY_PIPELINE = strtobool(os.environ.get('SHARE_LEGACY_PIPELINE', 'True'))

HIDE_DEPRECATED_VIEWS = strtobool(os.environ.get('HIDE_DEPRECATED_VIEWS', 'False'))

Expand Down

0 comments on commit 6c356c3

Please sign in to comment.