chore(): Improve caching rollout (#13702)
* chore(): Improve caching rollout * Create bright-cobras-complain.md * chore(): Improve caching rollout * downgrade orm to 6.4.3 * chore(): Improve caching rollout * chore(): Improve caching rollout * chore(): Improve caching rollout * chore(): Improve caching rollout * chore(): Improve caching rollout * fix * update changeset * update modules definition * update engine tests * update engine tests * improve integration * improve integration * gracefully disconnect * update test * another attempt * another attempt * fix workflow storage * fix remote joiner * fix remote joiner --------- Co-authored-by: Oli Juhl <59018053+olivermrbl@users.noreply.github.com>
This commit is contained in:
committed by
GitHub
parent
e9b7a8c1f3
commit
0cbd9f0bc3
@@ -620,6 +620,9 @@ export class RemoteJoiner {
|
||||
isObject(ids) &&
|
||||
Object.keys(ids).some((key) => !!FilterOperatorMap[key])
|
||||
uniqueIds = isIdsUsingOperatorMap ? ids : Array.isArray(ids) ? ids : [ids]
|
||||
uniqueIds = Array.isArray(uniqueIds)
|
||||
? uniqueIds.filter((id) => id != null)
|
||||
: uniqueIds
|
||||
}
|
||||
|
||||
if (uniqueIds && Array.isArray(uniqueIds)) {
|
||||
@@ -635,8 +638,6 @@ export class RemoteJoiner {
|
||||
} else {
|
||||
uniqueIds = Array.from(new Set(uniqueIds.flat()))
|
||||
}
|
||||
|
||||
uniqueIds = uniqueIds.filter((id) => isDefined(id))
|
||||
}
|
||||
|
||||
let pkFieldAdjusted = pkField
|
||||
|
||||
Reference in New Issue
Block a user