Merge branch 'master' of github.com:Budibase/budibase into fix/roles-issue
This commit is contained in:
commit
2ab8d3ff22
|
@ -30,9 +30,9 @@ exports.save = async function (ctx) {
|
|||
datasource._rev = response.rev
|
||||
|
||||
// Drain connection pools when configuration is changed
|
||||
const pool = integrations[datasource.source].pool
|
||||
if (pool) {
|
||||
await pool.end()
|
||||
const source = integrations[datasource.source]
|
||||
if (source && source.pool) {
|
||||
await source.pool.end()
|
||||
}
|
||||
|
||||
ctx.status = 200
|
||||
|
|
|
@ -5,7 +5,7 @@ jest.mock("../../environment", () => ({
|
|||
prod: false,
|
||||
isTest: () => true,
|
||||
isProd: () => this.prod,
|
||||
_set: (key, value) => {
|
||||
_set: function(key, value) {
|
||||
this.prod = value === "production"
|
||||
}
|
||||
})
|
||||
|
|
|
@ -91,7 +91,7 @@ describe("resourceId middleware", () => {
|
|||
.mainResource("custom")
|
||||
.subResource("customSub")
|
||||
.build()
|
||||
config = new TestConfiguration(middleware)
|
||||
let config = new TestConfiguration(middleware)
|
||||
config.setBody({
|
||||
custom: "test",
|
||||
customSub: "subtest"
|
||||
|
|
Loading…
Reference in New Issue