diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/delegate_sup.erl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/delegate_sup.erl b/src/delegate_sup.erl index 96515ff4ca..78e8eadc9d 100644 --- a/src/delegate_sup.erl +++ b/src/delegate_sup.erl @@ -48,7 +48,8 @@ count([Node | Nodes]) -> length(supervisor:which_children({?SERVER, Node})) catch exit:{{R, _}, _} when R =:= nodedown; R =:= shutdown -> count(Nodes); - exit:{R, _} when R =:= noproc; R =:= normal; R =:= shutdown -> + exit:{R, _} when R =:= noproc; R =:= normal; R =:= shutdown; + R =:= nodedown -> count(Nodes) end. |
