You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have added fastify-custom-healthcheck for extending health functionalities of my app. but when i run my unit or integration tests it was failing at the time of hitting app.ready() and didn't even throw any valid errors other than 'Exceeded timeout of 5000 ms for a hook'. When i run without 'fastify-custom-healthcheck', it works fine. I will appreciate your help, if anyone can
I have added fastify-custom-healthcheck for extending health functionalities of my app. but when i run my unit or integration tests it was failing at the time of hitting app.ready() and didn't even throw any valid errors other than 'Exceeded timeout of 5000 ms for a hook'. When i run without 'fastify-custom-healthcheck', it works fine. I will appreciate your help, if anyone can
*Code snippet
fastify
.register(customHealthCheck, {
path:
${routePrefix}/health/check
,info: { message: 'HealthCheck' },
exposeFailure: true
})
.then(() => {
astify.addHealthCheck('sync', () => true)
})
The text was updated successfully, but these errors were encountered: