chore(xo-server): increase blocked threshold from 10 to 50
This commit is contained in:
parent
8b9f9ffa3e
commit
c087eaf229
@ -538,9 +538,14 @@ export default async function main (args) {
|
|||||||
|
|
||||||
{
|
{
|
||||||
const debug = createLogger('xo:perf')
|
const debug = createLogger('xo:perf')
|
||||||
blocked(ms => {
|
blocked(
|
||||||
debug('blocked for %sms', ms | 0)
|
ms => {
|
||||||
})
|
debug('blocked for %sms', ms | 0)
|
||||||
|
},
|
||||||
|
{
|
||||||
|
threshold: 50,
|
||||||
|
}
|
||||||
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
const config = await loadConfiguration()
|
const config = await loadConfiguration()
|
||||||
|
Loading…
Reference in New Issue
Block a user