Skip to content
Closed
Changes from all commits
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
fix: use wrapTraceContext on onChangeOperation to enable onUpdate fir…
…estore triggers to get the trace information
  • Loading branch information
JonatanSalas committed Mar 4, 2024
commit 2faec5e6e06884729240a6cb8503ba903ee3e757
2 changes: 1 addition & 1 deletion src/v2/providers/firestore.ts
Original file line number Diff line number Diff line change
Expand Up @@ -473,7 +473,7 @@ export function onChangedOperation<Document extends string>(
const event = raw as RawFirestoreEvent;
const params = makeParams(event.document, documentPattern) as unknown as ParamsOf<Document>;
const firestoreEvent = makeChangedFirestoreEvent(event, params);
return handler(firestoreEvent);
return wrapTraceContext(handler)(firestoreEvent);
};

func.run = handler;
Expand Down