Reomove Orch queue items

During testing, there might be items that are left in an “In Progress” state. How can a developer mark these items as failed and retry the same item from Orchestrator?

Currently it gets marked failed automatically only after 24 hrs. Instead I can reuse the same item during dev and testing phase by retry. Any suggestion

Ideally creating a small sequence to get queue items in in progress and Then immediately a loop with set transaction status would do the job

Or

if you are ok even if the item is left in in progress. You can create new item by downloading the item and then uploading a json structure to create new.

1 Like

How to dwonload json

Once you set the status to failed, you can directly retry. you will have a option like below.

Hi @mysoftlabs

you cannot manually change an “In Progress” item in Orchestrator. The process itself must use the Set Transaction Status activity to mark the item as Failed or Successful. Once marked Failed, Orchestrator will immediately create a retry if the queue has retries enabled.

Happy Automation with UiPath

1 Like

@mysoftlabs

Simply create a small process with

  1. get queue items with filter as in progress
  2. Loop on the items and use set transaction status inside loop

then if you need same items in same loop use add queue item or manually go to queue and clone it

cheers

1 Like

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