1
0
Fork 0
mirror of synced 2024-09-30 00:57:16 +13:00

Merge branch 'master' of github.com:Budibase/budibase into fix/roles-issue

This commit is contained in:
mike12345567 2021-06-01 17:18:42 +01:00
commit 0382939fa5
3 changed files with 5 additions and 5 deletions

View file

@ -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

View file

@ -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"
}
})

View file

@ -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"