remove the timeout param from ping

This commit is contained in:
2016-10-19 13:39:22 -07:00
parent 64ff676fab
commit 2753986038

View File

@@ -29,7 +29,7 @@ export default class Esqueue extends events.EventEmitter {
_initTasks() { _initTasks() {
const initTasks = [ const initTasks = [
this.client.ping({ timeout: 3000 }), this.client.ping(),
]; ];
return Promise.all(initTasks).catch((err) => { return Promise.all(initTasks).catch((err) => {