Hi,
<br>
<br>I have tested a distributed test application between 2 nodes (test_p and 
test_s).
<br>
<br>test_p is primary node and test_s is secondary.
<br>
<br>When i stop test_p node,  start(failover, Args) was called in test_s node.
<br>
<br>But when i stop only the test application in test_p node without 
stopping the node, start(failover, Args) was not called  in test_s node.
<br>
<br>is that the behavior of erlang kernel distribution. if not can u guys 
please help me on this.
<br>
<br>my kernel configuration is below :
<br>{kernel,
<br>  [{distributed,
<br>                [
<br>                {reduce_test, 5000, [test_p@my_host, test_s@my_host]}
<br>                ]},
<br>        {sync_nodes_optional, [test_p@my_host, test_s@my_host]},
<br>        {sync_nodes_timeout, 5000},
<br>       {start_dist_ac, true}
<br>   ]}
<br>
<br>Thanks
<br>Kajan.
<br>