Skip to content

Commit

Permalink
Update messageId format for faked analytics.js event call
Browse files Browse the repository at this point in the history
  • Loading branch information
bryanlandia committed Aug 29, 2023
1 parent 089d68f commit c3da2d9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions common/djangoapps/track/views/segmentio.py
Original file line number Diff line number Diff line change
Expand Up @@ -289,8 +289,8 @@ def send_event(request, method, **params):
segment_key = helpers.get_current_site_configuration().get_secret_value('SEGMENT_KEY')
if segment_key:
data['writeKey'] = segment_key
data['messageId'] = 'ajs-' + uuid.uuid4().hex
site_response = requests.post(url, json=data)
data['messageId'] = 'ajs-next-' + uuid.uuid4().hex
site_response = requests.post(url, json=data) # noqa: F841
return HttpResponse(
main_response.content,
status=main_response.status_code,
Expand Down

0 comments on commit c3da2d9

Please sign in to comment.