@xuda.io/runtime-bundle 1.0.512 → 1.0.513
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 +17 -13
- package/js/xuda-runtime-bundle.min.js +1 -1
- package/js/xuda-runtime-mini-bundle.js +17 -13
- package/js/xuda-runtime-mini-bundle.min.js +1 -1
- package/js/xuda-runtime-slim.js +17 -13
- package/js/xuda-runtime-slim.min.es.js +17 -13
- package/js/xuda-runtime-slim.min.js +1 -1
- package/js/xuda-server-bundle.min.mjs +1 -1
- package/js/xuda-server-bundle.mjs +17 -13
- package/js/xuda-worker-bundle.js +17 -13
- package/js/xuda-worker-bundle.min.js +1 -1
- package/package.json +1 -1
|
@@ -25742,20 +25742,24 @@ func.utils.ws_worker.functions = {
|
|
|
25742
25742
|
args.run_atP,
|
|
25743
25743
|
args.worker_id,
|
|
25744
25744
|
);
|
|
25745
|
-
|
|
25746
|
-
|
|
25747
|
-
|
|
25748
|
-
|
|
25745
|
+
try {
|
|
25746
|
+
let _ds = _session.DS_GLB[ret.dsSessionP];
|
|
25747
|
+
if (show_log) console.log('DATASOURCE EXECUTION DONE ' + ret.dsSessionP + ' ' + _ds?.tree_obj?.menuName || '' + ' SESSION_ID: ' + SESSION_ID, APP_OBJ[_session.app_id].app_name);
|
|
25748
|
+
var obj = func.utils.clean_returned_datasource(SESSION_ID, ret?.dsSessionP);
|
|
25749
|
+
obj.dataSourceSessionGlobal = _session.dataSourceSessionGlobal;
|
|
25749
25750
|
|
|
25750
|
-
|
|
25751
|
-
|
|
25752
|
-
|
|
25753
|
-
|
|
25754
|
-
|
|
25755
|
-
|
|
25756
|
-
|
|
25757
|
-
|
|
25758
|
-
|
|
25751
|
+
worker_post_message({
|
|
25752
|
+
promise_queue_id,
|
|
25753
|
+
params: obj,
|
|
25754
|
+
worker_id: ws_worker_id,
|
|
25755
|
+
session_id: SESSION_ID,
|
|
25756
|
+
process_pid: params.process_pid,
|
|
25757
|
+
service: params.service,
|
|
25758
|
+
});
|
|
25759
|
+
_ds.stat = 'idle';
|
|
25760
|
+
} catch (error) {
|
|
25761
|
+
debugger;
|
|
25762
|
+
}
|
|
25759
25763
|
},
|
|
25760
25764
|
datasource_delete: function (params, promise_queue_id) {
|
|
25761
25765
|
var SESSION_ID = params.session_id;
|