@xuda.io/xuda-worker-bundle-min 1.3.1908 → 1.3.1909
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.js +3 -3
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -7117,9 +7117,9 @@ func.events.execute = async function (
|
|
|
7117
7117
|
await func.datasource.update(SESSION_ID, datasource_changes);
|
|
7118
7118
|
|
|
7119
7119
|
if (_ds.PARAM_OUT_INFO) {
|
|
7120
|
-
|
|
7121
|
-
|
|
7122
|
-
|
|
7120
|
+
for await (const [key, val] of Object.entries(_ds.PARAM_OUT_INFO)) {
|
|
7121
|
+
await func.datasource.update_changes_for_out_parameter(SESSION_ID, _ds.dsSession, val.parentDataSourceNo);
|
|
7122
|
+
}
|
|
7123
7123
|
}
|
|
7124
7124
|
|
|
7125
7125
|
if (jobNoP) func.events.delete_job(SESSION_ID, jobNoP);
|