fix: fix formatting issue.
[poolifier.git] / tests / worker-files / cluster / emptyWorker.js
... / ...
CommitLineData
1'use strict'
2const { ClusterWorker, KillBehaviors } = require('../../../lib')
3
4function test () {}
5
6module.exports = new ClusterWorker(test, {
7 killBehavior: KillBehaviors.HARD,
8 maxInactiveTime: 500
9})