Browse Source

[bug] wrong config setting for dababase. (#2984)

closed-social-glitch-2
Ayumu AIZAWA 6 years ago
committed by Eugen Rochko
parent
commit
b913746752
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      streaming/index.js

+ 1
- 1
streaming/index.js View File

@ -37,7 +37,7 @@ const dbUrlToConfig = (dbUrl) => {
}
if (params.pathname) {
config.database = params.params.pathname.split('/')[1]
config.database = params.pathname.split('/')[1]
}
const ssl = params.query && params.query.ssl

Loading…
Cancel
Save