Forum Discussion
altemann
10 years agoContributor
Hey jpaudel, how's going?!
How are your projects organized?
If I'm not mistaken you should have Synchpoints only in your Slave Projects and then when both machines get to the same point, it'll get back to execution.
For example, in your Slave Project you have the following unit:
function ExecutionHost1()
{
//Do something...
NetworkSuite.SynchPoints.EndExec.WaitFor();
}
function ExecutionHost2()
{
NetworkSuite.SynchPoints.EndExec.WaitFor();
//Do something...
}In this case, the function Execution Host 2 will only do something when the Execution Host 1 get's to the Synchpoint.
If that doesn't help, would it be possible for you to send some of your code or maybe some images of your projects structure?