Tidy up function rename.
This commit is contained in:
parent
51af154215
commit
a8ae839186
|
@ -167,7 +167,7 @@ class QueryRunner {
|
||||||
this.hasRerun = true
|
this.hasRerun = true
|
||||||
}
|
}
|
||||||
|
|
||||||
await threadUtils.invalidateDynamicVariables(this.cachedVariables)
|
await threadUtils.invalidateCachedVariable(this.cachedVariables)
|
||||||
return this.execute()
|
return this.execute()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -254,7 +254,7 @@ class QueryRunner {
|
||||||
let { parameters } = this
|
let { parameters } = this
|
||||||
const queryId = variable.queryId,
|
const queryId = variable.queryId,
|
||||||
name = variable.name
|
name = variable.name
|
||||||
let value = await threadUtils.checkCacheForDynamicVariable(queryId, name)
|
let value = await threadUtils.getCachedVariable(queryId, name)
|
||||||
if (!value) {
|
if (!value) {
|
||||||
value = this.queryResponse[queryId]
|
value = this.queryResponse[queryId]
|
||||||
? this.queryResponse[queryId]
|
? this.queryResponse[queryId]
|
||||||
|
|
|
@ -85,7 +85,7 @@ export default {
|
||||||
hasExtraData,
|
hasExtraData,
|
||||||
formatResponse,
|
formatResponse,
|
||||||
storeDynamicVariable,
|
storeDynamicVariable,
|
||||||
invalidateDynamicVariables: invalidateCachedVariable,
|
invalidateCachedVariable,
|
||||||
checkCacheForDynamicVariable: getCachedVariable,
|
getCachedVariable,
|
||||||
threadSetup,
|
threadSetup,
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue