I want to have a non destructive synchronization between source and target. To achieve this, I have two 'folder pairs' defined thusly:
1)
Source Target
A B
Synchronization is defined to be Contribute
2)
Source Target
B A
Synchronization is defined to be Contribute
When I run 'all folder pairs' I get a lot of errors. I suspect the problem is that these folder pairs are executed asynchronously (eg on separate threads), and thus there are a lot of open file errors.
I can manually execute each pair separately, and there are no errors. The problem arises if I try to schedule all pairs. I could split the pairs as separate tasks, but then how do I know how long the take to execute, so I'm sure that there is no overlap.
Is there a way to force synchronous execution of the pairs? If not, there should be.
Thanks for your help.