Skip to content

Commit

Permalink
fix: remove under-pressure maxEventLoopUtilization check (#137)
Browse files Browse the repository at this point in the history
  • Loading branch information
thebengeu authored Apr 14, 2022
1 parent 418aa29 commit 12a1258
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ const build = (opts: buildOpts = {}): FastifyInstance => {
app.register(logTenantId)
app.register(bucketRoutes, { prefix: 'bucket' })
app.register(objectRoutes, { prefix: 'object' })
app.register(underPressure, { exposeStatusRoute: true, maxEventLoopUtilization: 0.99 })
app.register(underPressure, { exposeStatusRoute: true })

return app
}
Expand Down

0 comments on commit 12a1258

Please sign in to comment.