1
0
Fork 0
mirror of synced 2024-10-05 20:44:47 +13:00

Adding another check to make sure context is the same.

This commit is contained in:
mike12345567 2022-04-20 23:13:08 +01:00
parent 151ed604f8
commit 13cb5f7f7c

View file

@ -90,7 +90,7 @@ exports.doInTenant = (tenantId, task) => {
}
}
const using = cls.getFromContext(ContextKeys.IN_USE)
if (using) {
if (using && cls.getFromContext(ContextKeys.TENANT_ID) === tenantId) {
cls.setOnContext(ContextKeys.IN_USE, using + 1)
return internal({ existing: true })
} else {
@ -154,7 +154,7 @@ exports.doInAppContext = (appId, task) => {
}
}
const using = cls.getFromContext(ContextKeys.IN_USE)
if (using) {
if (using && cls.getFromContext(ContextKeys.APP_ID) === appId) {
cls.setOnContext(ContextKeys.IN_USE, using + 1)
return internal({ existing: true })
} else {