Change network partition test to use socket.destroy()

This commit is contained in:
Sehrope Sarkuni 2018-05-03 07:57:47 -04:00 committed by Brian C
parent b0c60cf288
commit 272e9a5998

View File

@ -46,7 +46,7 @@ Server.prototype.start = function (cb) {
}
Server.prototype.drop = function () {
this.socket.end()
this.socket.destroy()
}
Server.prototype.close = function (cb) {