Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions langfuse/_task_manager/ingestion_consumer.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,9 @@ def _next(self):

continue

# apply mask
self._apply_mask_in_place(event)

# handle multimodal data
self._media_manager.process_media_in_event(event)

Expand All @@ -125,9 +128,6 @@ def _next(self):
log_message="<truncated due to size exceeding limit>",
)

# apply mask
self._apply_mask_in_place(event)

# check for serialization errors
try:
json.dumps(event, cls=EventSerializer)
Expand Down