我正在使用 nodejs 的 NodeLoad 模块同时发送多个请求来测试服务器节点应用程序,但如果我使用numUsers : 50
它,它对我来说非常适合。当我接受numUsers : 300
比给我错误时:TypeError: Object #<Client> has no method 'destroy'
我使用的 NodeLoad 应用程序
timeLimit: 10,
targetRps: 5,
numUsers : 300,
错误 :
},reconnect=function(){var oldclient=client;if(oldclient){oldclient.destroy();
^
TypeError: Object #<Client> has no method 'destroy'
at reconnect (/root/nodeLoadDemo/nodeload/node_modules/nodeload/nodeload.js:9:506)
at Client.<anonymous> (/root/nodeLoadDemo/nodeload/node_modules/nodeload/nodeload.js:10:180)
at Client.EventEmitter.emit (events.js:117:20)
at ClientRequest.<anonymous> (http.js:2144:10)
at ClientRequest.EventEmitter.emit (events.js:95:17)
at Socket.socketOnEnd [as onend] (http.js:1568:9)
at Socket.g (events.js:180:16)
at Socket.EventEmitter.emit (events.js:117:20)
at _stream_readable.js:919:16
at process._tickCallback (node.js:419:13)
那么,任何人都可以解释我如何错误吗?以及这些错误的解决方案?
谢谢你 。