(reason)
| 235 | closeConnection(connection, "normal", OTEL_MAX_SPAN_QUEUE_SIZE); |
| 236 | }, |
| 237 | cancel(reason) { |
| 238 | closeConnection( |
| 239 | connection, |
| 240 | reason === undefined ? "cancel" : "error", |
| 241 | OTEL_MAX_SPAN_QUEUE_SIZE, |
| 242 | ); |
| 243 | }, |
| 244 | }); |
| 245 | |
| 246 | const body = response.body.pipeThrough(counting); |
nothing calls this directly
no test coverage detected