()
| 75 | if (!handlersRegistered) { |
| 76 | handlersRegistered = true |
| 77 | const onExit = async () => { |
| 78 | await flushHostedKeyMetrics() |
| 79 | } |
| 80 | process.once('SIGTERM', onExit) |
| 81 | process.once('SIGINT', onExit) |
| 82 | process.once('beforeExit', onExit) |
nothing calls this directly
no test coverage detected