@budibase/server 2.7.7-alpha.4 → 2.7.7-alpha.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/automation.js +2 -0
- package/dist/automation.js.map +2 -2
- package/dist/index.js +2 -0
- package/dist/index.js.map +2 -2
- package/dist/query.js +2 -0
- package/dist/query.js.map +2 -2
- package/package.json +9 -9
- package/src/integrations/mongodb.ts +4 -2
package/dist/query.js
CHANGED
|
@@ -14959,6 +14959,8 @@ var MongoIntegration = class {
|
|
|
14959
14959
|
response.connected = true;
|
|
14960
14960
|
} catch (e) {
|
|
14961
14961
|
response.error = e.message;
|
|
14962
|
+
} finally {
|
|
14963
|
+
await this.client.close();
|
|
14962
14964
|
}
|
|
14963
14965
|
return response;
|
|
14964
14966
|
}
|