Add async to all paths that JSONata env var calls

This commit is contained in:
Steve-Mcl
2023-06-17 21:14:56 +01:00
parent fb5b470966
commit 4808cac89d
4 changed files with 184 additions and 69 deletions

View File

@@ -780,7 +780,7 @@ const flowAPI = {
getNode: getNode,
handleError: () => false,
handleStatus: () => false,
getSetting: k => flowUtil.getEnvVar(k),
getSetting: (k, callback) => flowUtil.getEnvVar(k, callback),
log: m => log.log(m)
}