Skip to content

Commit

Permalink
fix(query-orchestrator): use bluebird to promisify redis client
Browse files Browse the repository at this point in the history
  • Loading branch information
vladi-dev committed Apr 19, 2019
1 parent 0a8f324 commit 4652433
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
@@ -1,5 +1,5 @@
const redis = require('redis');
const promisifyAll = require('util-promisifyall');
const { promisifyAll } = require('bluebird');
const R = require('ramda');

const BaseQueueDriver = require('./BaseQueueDriver');
Expand Down
4 changes: 2 additions & 2 deletions packages/cubejs-query-orchestrator/package.json
Expand Up @@ -10,9 +10,9 @@
"test": "mocha"
},
"dependencies": {
"bluebird": "^3.5.4",
"ramda": "^0.24.1",
"redis": "^2.8.0",
"util-promisifyall": "^1.0.4"
"redis": "^2.8.0"
},
"devDependencies": {
"eslint": "^4.14.0",
Expand Down
5 changes: 5 additions & 0 deletions packages/cubejs-query-orchestrator/yarn.lock
Expand Up @@ -82,6 +82,11 @@ balanced-match@^1.0.0:
resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767"
integrity sha1-ibTRmasr7kneFk6gK4nORi1xt2c=

bluebird@^3.5.4:
version "3.5.4"
resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.5.4.tgz#d6cc661595de30d5b3af5fcedd3c0b3ef6ec5714"
integrity sha512-FG+nFEZChJrbQ9tIccIfZJBz3J7mLrAhxakAbnrJWn8d7aKOC+LWifa0G+p4ZqKp4y13T7juYvdhq9NzKdsrjw==

brace-expansion@^1.1.7:
version "1.1.11"
resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd"
Expand Down

0 comments on commit 4652433

Please sign in to comment.