fix: pass course_key as a string in the edx.bi.experiment.AA759.bucketed event

This commit is contained in:
Matthew Piatetsky
2021-06-02 16:02:09 -04:00
parent cea450a35b
commit acbec4d0c1

View File

@@ -275,7 +275,7 @@ class ExperimentWaffleFlag(CourseWaffleFlag):
user_id=user.id,
event_name='edx.bi.experiment.AA759.bucketed',
properties={
'course_id': course_key,
'course_id': str(course_key),
'bucket': bucket,
'sku': verified_mode.sku,
}