PR comments.

This commit is contained in:
mike12345567 2022-07-18 18:18:01 +01:00
parent 078cf9e95f
commit 2f27e750f5
1 changed files with 4 additions and 1 deletions

View File

@ -67,7 +67,10 @@ export const getTenantIDFromAppID = (appId: string) => {
// used for automations, API endpoints should always be in context already
export const doInTenant = (tenantId: string | null, task: any) => {
tenantId = tenantId || DEFAULT_TENANT_ID
// make sure default always selected in single tenancy
if (!env.MULTI_TENANCY) {
tenantId = tenantId || DEFAULT_TENANT_ID
}
// the internal function is so that we can re-use an existing
// context - don't want to close DB on a parent context
async function internal(opts = { existing: false }) {