remove ENABLE_VIDEO_URL_REWRITE

The temporary waffle flag ENABLE_VIDEO_URL_REWRITE is no
longer needed, becaues the rollout is complete.
See https://openedx.atlassian.net/browse/PROD-62

ARCHBOM-1304
This commit is contained in:
Robert Raposa
2020-06-23 11:19:32 -04:00
parent 5c0fd63f13
commit 624012e11c
3 changed files with 9 additions and 36 deletions

View File

@@ -26,20 +26,3 @@ HIDE_ACCESS_DENIALS_FLAG = WaffleFlag(
flag_undefined_default=False
)
# Waffle course override to rewrite video URLs for videos that have encodings available.
# .. toggle_name: course_blocks_api.enable_video_url_rewrite
# .. toggle_implementation: CourseWaffleFlag
# .. toggle_default: False
# .. toggle_description: Controlled rollout for video URL re-write utility to serve videos from edX CDN.
# .. toggle_category: course api
# .. toggle_use_cases: monitored_rollout
# .. toggle_creation_date: 2019-09-24
# .. toggle_expiration_date: ??
# .. toggle_warnings: None
# .. toggle_tickets: PROD-62
# .. toggle_status: supported
ENABLE_VIDEO_URL_REWRITE = CourseWaffleFlag(
waffle_namespace=COURSE_BLOCKS_API_NAMESPACE,
flag_name="enable_video_url_rewrite",
flag_undefined_default=True
)