Merge pull request #8795 from Budibase/fix/pass-request-context-to-dynamic-var-retry

User/Auth context now being passed to dynamic variable request updates
This commit is contained in:
deanhannigan 2022-11-24 13:42:51 +00:00 committed by GitHub
commit 30160a5fc1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -58,7 +58,6 @@ class QueryRunner {
async execute(): Promise<any> {
let { datasource, fields, queryVerb, transformer } = this
let datasourceClone = cloneDeep(datasource)
let fieldsClone = cloneDeep(fields)
@ -181,6 +180,7 @@ class QueryRunner {
parameters,
transformer: query.transformer,
queryId,
ctx: this.ctx,
},
{ noRecursiveQuery: true }
).execute()