Browse Source

Merge pull request #13282 from revant/fix-node-utils

fix: set correct default redis async broker in node_utils
version-14
mergify[bot] 4 years ago
committed by GitHub
parent
commit
8e9432e40d
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      node_utils.js

+ 1
- 1
node_utils.js View File

@@ -6,7 +6,7 @@ const bench_path = path.resolve(__dirname, '..', '..');
function get_conf() { function get_conf() {
// defaults // defaults
var conf = { var conf = {
redis_async_broker_port: 12311,
redis_async_broker_port: 'redis://localhost:12311',
socketio_port: 3000 socketio_port: 3000
}; };




Loading…
Cancel
Save