increase timeout value from 15s to 45. ought to be enough for anybody

This commit is contained in:
ansuz
2020-03-19 16:13:24 -04:00
parent 05a4e86cdb
commit 32cd0f3c4d

View File

@@ -72,7 +72,7 @@ const ensureStreamCloses = function (stream, id, ms) {
// this can only be a timeout error... // this can only be a timeout error...
console.log("stream close error:", err, id); console.log("stream close error:", err, id);
} }
}), ms || 15000), []); }), ms || 45000), []);
}; };
// readMessagesBin asynchronously iterates over the messages in a channel log // readMessagesBin asynchronously iterates over the messages in a channel log