@5minds/node-red-contrib-processcube 1.5.2-debug-1ac394-m35x7rk5 → 1.5.2-debug-11941e-m3600onb
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/externaltask-input.js +4 -1
- package/package.json +1 -1
package/externaltask-input.js
CHANGED
@@ -118,10 +118,13 @@ module.exports = function (RED) {
|
|
118
118
|
.then(async (externalTaskWorker) => {
|
119
119
|
node.status({ fill: 'blue', shape: 'ring', text: 'subcribed' });
|
120
120
|
|
121
|
-
node.log('engine_identiy777'
|
121
|
+
node.log('engine_identiy777');
|
122
|
+
|
122
123
|
node.log(engine.identity);
|
123
124
|
externalTaskWorker.identity = engine.identity;
|
124
125
|
engine.registerOnIdentityChanged((identity) => {
|
126
|
+
node.log('changed777');
|
127
|
+
node.log(identity);
|
125
128
|
externalTaskWorker.identity = identity;
|
126
129
|
});
|
127
130
|
|