Make partition test not flake on old node

This commit is contained in:
Brian M. Carlson 2021-07-27 12:05:21 -05:00
parent 958388a6cd
commit da49303522

View File

@ -11,6 +11,7 @@ var Server = function (response) {
this.response = response
}
let port = 54321
Server.prototype.start = function (cb) {
// this is our fake postgres server
// it responds with our specified response immediatley after receiving every buffer
@ -39,7 +40,7 @@ Server.prototype.start = function (cb) {
}.bind(this)
)
var port = 54321
port = port + 1
var options = {
host: 'localhost',