Pass Request signal down from API controllers

This commit is contained in:
Alex Gleason
2024-01-23 15:53:29 -06:00
parent 77f2e2d940
commit 5b24b7ad39
26 changed files with 81 additions and 59 deletions

View File

@@ -19,5 +19,5 @@ async function publish(t: EventStub) {
...t,
});
await pipeline.handleEvent(event);
await pipeline.handleEvent(event, AbortSignal.timeout(5000));
}