changing let get = util.promisify(client.get);
to let get = util.promisify(client.get).bind(client);
solved it for me 🙂
changing let get = util.promisify(client.get);
to let get = util.promisify(client.get).bind(client);
solved it for me 🙂