We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3e25a3c commit 07150c5Copy full SHA for 07150c5
1 file changed
langfuse/_task_manager/ingestion_consumer.py
@@ -211,10 +211,12 @@ def _truncate_item_in_place(
211
212
# if item does not have body or input/output fields, drop the event
213
if "body" not in event or (
214
- "input" not in event["body"] and "output" not in event["body"]
+ "input" not in event["body"]
215
+ and "output" not in event["body"]
216
+ and "metadata" not in event["body"]
217
):
218
self._log.warning(
- "Item does not have body or input/output fields, dropping item."
219
+ "Item does not have body or input/output/metadata fields, dropping item."
220
)
221
self._ingestion_queue.task_done()
222
return 0
0 commit comments