Instead of going up the stacktrace to find the module names of waffle
flags and switches, we manually pass the module __name__ whenever the
flag is created. This is similar to `logging.getLogger(__name__)`
standard behaviour.
As the waffle classes are used outside of edx-platform, we make the new
module_name argument an optional keyword argument. This will change once
we pull waffle_utils outside of edx-platform.
Note that the module name is normally only required to view the list of
existing waffle flags and switches. The module name should not be
necessary to verify if a flag is enabled. Thus, maybe it would make
sense to create a `add` class methor similar to:
class WaffleFlag:
@classmethod
def add(cls, namespace, flag, module):
instance = cls(namespace, flag)
cls._class_instances.add((instance, module))
26 lines
643 B
Python
26 lines
643 B
Python
"""
|
|
Togglable settings for Course Grading behavior
|
|
"""
|
|
from openedx.core.djangoapps.waffle_utils import CourseWaffleFlag
|
|
|
|
|
|
WAFFLE_NAMESPACE = 'grades'
|
|
|
|
# edx/edx-platform feature
|
|
MATERIAL_RECOMPUTE_ONLY = 'MATERIAL_RECOMPUTE_ONLY'
|
|
|
|
MATERIAL_RECOMPUTE_ONLY_FLAG = CourseWaffleFlag(
|
|
waffle_namespace=WAFFLE_NAMESPACE,
|
|
flag_name=MATERIAL_RECOMPUTE_ONLY,
|
|
module_name=__name__,
|
|
)
|
|
|
|
|
|
def material_recompute_only(course_key):
|
|
"""
|
|
Checks to see if the CourseWaffleFlag or Django setting for material recomputer only is enabled
|
|
"""
|
|
if MATERIAL_RECOMPUTE_ONLY_FLAG.is_enabled(course_key):
|
|
return True
|
|
return False
|