@xuda.io/runtime-bundle 1.0.711 → 1.0.713
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/js/xuda-runtime-bundle.js +12 -12
- package/js/xuda-runtime-bundle.min.js +1 -1
- package/js/xuda-runtime-slim.js +12 -12
- package/js/xuda-runtime-slim.min.es.js +12 -12
- package/js/xuda-runtime-slim.min.js +1 -1
- package/js/xuda-server-bundle.min.mjs +1 -1
- package/js/xuda-server-bundle.mjs +11 -12
- package/js/xuda-worker-bundle.js +11 -12
- package/js/xuda-worker-bundle.min.js +1 -1
- package/package.json +1 -1
|
@@ -2533,7 +2533,7 @@ func.datasource.run_events_functions = async function (SESSION_ID, dataSourceSes
|
|
|
2533
2533
|
clearInterval(interval);
|
|
2534
2534
|
resolve(job_num);
|
|
2535
2535
|
}
|
|
2536
|
-
if (i >
|
|
2536
|
+
if (i > 50) {
|
|
2537
2537
|
console.error('deadlock detected');
|
|
2538
2538
|
clearInterval(interval);
|
|
2539
2539
|
resolve(job_num);
|
|
@@ -3273,17 +3273,16 @@ func.datasource.update = async function (SESSION_ID, datasource_changes, update_
|
|
|
3273
3273
|
fields_changed.push(field_id);
|
|
3274
3274
|
|
|
3275
3275
|
///// REFRESH PARAMETERS IN
|
|
3276
|
-
|
|
3277
|
-
|
|
3278
|
-
|
|
3279
|
-
|
|
3280
|
-
|
|
3281
|
-
|
|
3282
|
-
|
|
3283
|
-
|
|
3284
|
-
|
|
3285
|
-
|
|
3286
|
-
}
|
|
3276
|
+
// for (const [_dsSession, _ds] of Object.entries(_session.DS_GLB)) {
|
|
3277
|
+
// if (_ds.args.parameters_raw_obj) {
|
|
3278
|
+
// for (const [key, exp] of Object.entries(_ds.args.parameters_raw_obj)) {
|
|
3279
|
+
// if (exp.includes(field_id)) {
|
|
3280
|
+
// let ret = await func.expression.get(SESSION_ID, exp, _dsSession, 'parameters');
|
|
3281
|
+
// _ds.in_parameters[key].value = ret.result;
|
|
3282
|
+
// }
|
|
3283
|
+
// }
|
|
3284
|
+
// }
|
|
3285
|
+
// }
|
|
3287
3286
|
}
|
|
3288
3287
|
if (!datasource_changed.includes(dataSource)) {
|
|
3289
3288
|
datasource_changed.push(dataSource);
|
package/js/xuda-worker-bundle.js
CHANGED
|
@@ -2533,7 +2533,7 @@ func.datasource.run_events_functions = async function (SESSION_ID, dataSourceSes
|
|
|
2533
2533
|
clearInterval(interval);
|
|
2534
2534
|
resolve(job_num);
|
|
2535
2535
|
}
|
|
2536
|
-
if (i >
|
|
2536
|
+
if (i > 50) {
|
|
2537
2537
|
console.error('deadlock detected');
|
|
2538
2538
|
clearInterval(interval);
|
|
2539
2539
|
resolve(job_num);
|
|
@@ -3273,17 +3273,16 @@ func.datasource.update = async function (SESSION_ID, datasource_changes, update_
|
|
|
3273
3273
|
fields_changed.push(field_id);
|
|
3274
3274
|
|
|
3275
3275
|
///// REFRESH PARAMETERS IN
|
|
3276
|
-
|
|
3277
|
-
|
|
3278
|
-
|
|
3279
|
-
|
|
3280
|
-
|
|
3281
|
-
|
|
3282
|
-
|
|
3283
|
-
|
|
3284
|
-
|
|
3285
|
-
|
|
3286
|
-
}
|
|
3276
|
+
// for (const [_dsSession, _ds] of Object.entries(_session.DS_GLB)) {
|
|
3277
|
+
// if (_ds.args.parameters_raw_obj) {
|
|
3278
|
+
// for (const [key, exp] of Object.entries(_ds.args.parameters_raw_obj)) {
|
|
3279
|
+
// if (exp.includes(field_id)) {
|
|
3280
|
+
// let ret = await func.expression.get(SESSION_ID, exp, _dsSession, 'parameters');
|
|
3281
|
+
// _ds.in_parameters[key].value = ret.result;
|
|
3282
|
+
// }
|
|
3283
|
+
// }
|
|
3284
|
+
// }
|
|
3285
|
+
// }
|
|
3287
3286
|
}
|
|
3288
3287
|
if (!datasource_changed.includes(dataSource)) {
|
|
3289
3288
|
datasource_changed.push(dataSource);
|