aboutsummaryrefslogtreecommitdiffstats
path: root/lib/tools/src
diff options
context:
space:
mode:
authorSiri Hansen <[email protected]>2012-12-19 12:25:07 +0100
committerSiri Hansen <[email protected]>2012-12-19 12:29:10 +0100
commitc1ecd14be890ec4f2e8a25f00525412a381fcc72 (patch)
tree51e7f0971e013e798b4535ac7eea466909c9825e /lib/tools/src
parentc89f88ab3ec77ebc1cef180e1ae5c9917b4c7b06 (diff)
downloadotp-c1ecd14be890ec4f2e8a25f00525412a381fcc72.tar.gz
otp-c1ecd14be890ec4f2e8a25f00525412a381fcc72.tar.bz2
otp-c1ecd14be890ec4f2e8a25f00525412a381fcc72.zip
[cover] Remove stopped node also from lost_nodes list
A nodes that was stopped with cover:stop/1 while marked as lost would not be removed from the list of lost nodes. Therefore, if a nodeup was later received for a node with the same name, it would be reconnected. This has been corrected.
Diffstat (limited to 'lib/tools/src')
-rw-r--r--lib/tools/src/cover.erl4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/tools/src/cover.erl b/lib/tools/src/cover.erl
index e51763b6ee..943eee20d2 100644
--- a/lib/tools/src/cover.erl
+++ b/lib/tools/src/cover.erl
@@ -705,7 +705,9 @@ main_process_loop(State) ->
remote_collect('_',Nodes,true),
reply(From, ok),
Nodes1 = State#main_state.nodes--Nodes,
- main_process_loop(State#main_state{nodes=Nodes1});
+ LostNodes1 = State#main_state.lost_nodes--Nodes,
+ main_process_loop(State#main_state{nodes=Nodes1,
+ lost_nodes=LostNodes1});
{From, {flush,Nodes}} ->
remote_collect('_',Nodes,false),