I have a process that has been running fine but one time has given an error message ‘Collection was modified; enumeration operation may not execute.’.
It occurred at the “Killing processes…” log message in the KillAllProcesses.xaml part of the framework.
My understanding of that error message is that it normally triggers when you modify data from within an activity looping through items which that data is part of.
I don’t understand why a log message would throw this error because it shouldn’t be modifying data.
I haven’t even passed any arguments to KillAllProcesses.xaml.
Does anyone have any ideas as to why this error has occurred?
Are you trying to delete any rows under the loop?
Have a look at this,
Thanks,
Rammohan B.
Well,
This is a peculiar once coz I have never come across such scenario. Can you please check again whether it is the ‘Log Message’ activity throwing the error, and make sure you don’t have any variable logging (if so then make sure you don’t have methods or functions manipulating the said variable)
If none of the above scenarios are true then can you tell me the version (Enterprise/Community) name and version num. ?
Regards
Hi, it is definitely the Log message activity that threw the error, see log extracts below. I have also attached an image of the activity in UiPath and there is no variable involved in the log. The robot is running Enterprise version 18.4.3.
06:01:13.7667 Trace {“message”:“Log message - Killing Processes. (KillAllProcesses) Executing”,“level”:“Verbose”,“logType”:“Default”
06:01:13.7667 Trace {“message”:“Log message - Killing Processes. (KillAllProcesses) Faulted”,“level”:“Verbose”,“logType”:“Default”
06:01:13.7667 Error {“message”:“Log message - Killing Processes. (KillAllProcesses): Collection was modified; enumeration operation may not execute.”,“level”:“Error”,“logType”:“Default”
Well
I am just putting it out there, if there is no variable and if you haven’t marked it as ‘private’ in properties channel I don’t think such an error should occur in logging messages for all.
Try deleting and creating the same log message and please get back. Build that part again outside the scope of killing processes, and beyond that container log the message.
Hope this works
I encountered the same problem. The error is thrown by a Log Message activity (image bellow). Did anyone manage to find an explanation?
The error isn’t being generated by the Log Message activity. That’s just the last thing you’re seeing in the log before the error occurs. Something after that Log Message activity is failing.