Browse Source

Adding slash incase couch URL doesn't contain.

pull/3764/head
mike12345567 5 years ago
parent
commit
01f9ae3f48
  1. 2
      packages/auth/src/db/utils.js

2
packages/auth/src/db/utils.js

@ -223,7 +223,7 @@ exports.getAllDbs = async () => {
throw "Cannot connect to CouchDB instance"
}
}
let couchUrl = `${exports.getCouchUrl()}_all_dbs`
let couchUrl = `${exports.getCouchUrl()}/_all_dbs`
if (env.MULTI_TENANCY) {
let tenantId = getTenantId()
// get prod apps

Loading…
Cancel
Save