I am currently trying to implement a simple, existing solution into REFramework, due to many queue items being added. However, it seems to cause me some issues, where it will leave the second queue item in the “In Progress” state without ever processing it. It then moves on to the third queue item (if present), which it then processes as expected, but stated as Transaction number 2 in the logs in UiPath.
I have attached an example of the logs of a run with three identical queue items, as well as the queue items enlisted:
The problem looks like it is else where…because if you see the logs transaction started is coming twice before and after processing transaction 1 log message…so looks like after picking first it is picking second immediately and is being left…and in second transaction the 3rd queue item is being picked
please check by debugging and use step into and check where the second queueitem is being picked up and remove that or move it to appropriate place
@Anil_G@Sreelatha278
You are correct! Apparently I had another “Get Transaction Item” activity in the Process flow, causing the issue. Thanks for the input.