How can I start two processes under RPA simultaneously in Node-RED?

I have two processes in my RPA: one is a purely backend process that accesses an HTTP interface, and the other is a process that captures web pages. How can I run these two processes simultaneously in the Node-RED console? Currently, when I start one and then start the other, I encounter a timeout error. How can I resolve this issue?

If you want to run multiple workflows, remotely on a robot, you can either mark one of the workflows as a background workflow, or you can update settings.json to allow running multiple workflows, by setting remote_allow_multiple_running to true and remote_allow_multiple_running_max to the max number of workflows.

But that is not recommended. If you need to keep state, or if you need to run multiple workflows at the same time, you should look into using workitem queues.

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.