@5minds/node-red-contrib-processcube 1.5.2-develop-7add47-m2xezg12 → 1.5.2-develop-8d36d4-m36yzcrk
Sign up to get free protection for your applications and to get access to all the features.
package/package.json
CHANGED
@@ -29,9 +29,8 @@ module.exports = function (RED) {
|
|
29
29
|
|
30
30
|
try {
|
31
31
|
const result = await client.processInstances.query({
|
32
|
-
processModelId: modelId
|
33
|
-
|
34
|
-
});
|
32
|
+
processModelId: modelId
|
33
|
+
}, { identity: engine.identity });
|
35
34
|
|
36
35
|
let allInstances = result.processInstances.filter((instance) => instance.state != 'suspended');
|
37
36
|
|