diff --git a/src/pipeline.ts b/src/pipeline.ts index 9125c505..b965f598 100644 --- a/src/pipeline.ts +++ b/src/pipeline.ts @@ -69,19 +69,18 @@ async function handleEvent(event: DittoEvent, signal: AbortSignal): Promise - Promise.all([ + Promise.allSettled([ streamOut(event), webPush(event), ]) - ) - .catch(console.warn); + ); } }