Skip to content

Commit

Permalink
refs #532. Disables scheduled serializations.
Browse files Browse the repository at this point in the history
  • Loading branch information
Justin Littman committed Nov 15, 2016
1 parent de1ba29 commit 5c37558
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion sfm/sfm/settings/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,9 @@
# sfm processing space threshold to send notification email,only ends with MB,GB,TB. eg. 500MB,10GB,1TB
PROCESSING_THRESHOLD = env.get('PROCESSING_VOLUME_THRESHOLD', '10GB')

PERFORM_SERIALIZE = env.get('SFM_PERFORM_SERIALIZE', 'True') == 'True'
# Temporarily disabling scheduled serialization due to https://github.com/gwu-libraries/sfm-ui/issues/532.
# PERFORM_SERIALIZE = env.get('SFM_PERFORM_SERIALIZE', 'True') == 'True'
PERFORM_SERIALIZE = False
SERIALIZE_HOUR = env.get('SFM_SERIALIZE_HOUR', '3')
SERIALIZE_MINUTE = env.get('SFM_SERIALIZE_MINUTE', '0')

Expand Down

0 comments on commit 5c37558

Please sign in to comment.