(req: Request)
| 556 | } |
| 557 | |
| 558 | protected async safeFetch(req: Request): Promise<Response> { |
| 559 | try { |
| 560 | return await this.scope.fetch(req); |
| 561 | } catch { |
| 562 | return this.adapter.newResponse('', { |
| 563 | status: 504, |
| 564 | statusText: 'Gateway Timeout', |
| 565 | }); |
| 566 | } |
| 567 | } |
| 568 | } |
| 569 | |
| 570 | /** |
nothing calls this directly
no test coverage detected
searching dependent graphs…