0

我正在使用 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)

那么,任何人都可以解释我如何错误吗?以及这些错误的解决方案?

谢谢你 。

4

1 回答 1

0

我得到了答案

点击这里继续解决方案

你只需要改变node modules。打开nodeload模块和 nodeload.js 文件检查句子末尾的第 9 行replace

if (oldclient) { oldclient.destroy(); }

if (oldclient && oldclient.destroy) { oldclient.destroy(); }

于 2015-10-15T05:10:27.257 回答