From 27539860387efaf8e94d225015667f81c663d7ce Mon Sep 17 00:00:00 2001 From: Joe Fleming Date: Wed, 19 Oct 2016 13:39:22 -0700 Subject: [PATCH] remove the timeout param from ping --- src/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.js b/src/index.js index d0c48a3..99cc26b 100644 --- a/src/index.js +++ b/src/index.js @@ -29,7 +29,7 @@ export default class Esqueue extends events.EventEmitter { _initTasks() { const initTasks = [ - this.client.ping({ timeout: 3000 }), + this.client.ping(), ]; return Promise.all(initTasks).catch((err) => {