build: bump volta pnpm version
[poolifier.git] / tests / worker-files / cluster / errorWorker.cjs
... / ...
CommitLineData
1'use strict'
2const { ClusterWorker, KillBehaviors } = require('../../../lib/index.cjs')
3
4function error () {
5 throw new Error('Error Message from ClusterWorker')
6}
7
8module.exports = new ClusterWorker(error, {
9 killBehavior: KillBehaviors.HARD,
10 maxInactiveTime: 500
11})