소스 검색
Merge pull request #13282 from revant/fix-node-utils
fix: set correct default redis async broker in node_utils
version-14
mergify[bot]
4 년 전
committed by
GitHub
No known key found for this signature in database
GPG 키 ID: 4AEE18F83AFDEB23
1개의 변경된 파일과
1개의 추가작업 그리고
1개의 파일을 삭제
-
node_utils.js
|
|
@@ -6,7 +6,7 @@ const bench_path = path.resolve(__dirname, '..', '..'); |
|
|
|
function get_conf() { |
|
|
|
// defaults |
|
|
|
var conf = { |
|
|
|
redis_async_broker_port: 12311, |
|
|
|
redis_async_broker_port: 'redis://localhost:12311', |
|
|
|
socketio_port: 3000 |
|
|
|
}; |
|
|
|
|
|
|
|