RemoteException wrapping System.InvalidOperationException: Operations that change non-concurrent collections must have exclusive access

RemoteException wrapping System.InvalidOperationException: Operations that change non-concurrent collections must have exclusive access. A concurrent update was performed on this collection and corrupted its state. The collection’s state is no longer correct.

이런 오류가 떠요

Hi @sooyeon_Lim

Ensure that you are synchronizing access to the collection when multiple threads or activities are modifying it simultaneously. In UiPath, you can use the “Invoke Workflow File” activity with the Isolated property enabled to execute a workflow in a separate workflow environment, which can help with synchronization.

Thanks!!