Skip to content

Commit

Permalink
Merge branch 'maint'
Browse files Browse the repository at this point in the history
  • Loading branch information
bmk committed Sep 1, 2024
2 parents 248af5a + 40561ee commit 087dbc2
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions lib/diameter/test/diameter_event_SUITE.erl
Original file line number Diff line number Diff line change
Expand Up @@ -299,8 +299,21 @@ flooding_which_event({down = Event, _, _, _}) ->
Event;
flooding_which_event({watchdog, _, _, {initial, okay}, _}) ->
wd_init_okay;
flooding_which_event({watchdog, _, _, {initial, reopen}, _}) ->
wd_init_reopen;
flooding_which_event({watchdog, _, _, {okay, down}, _}) ->
wd_okay_down;
flooding_which_event({watchdog, _, _, {From, To}, _}) ->
?P("Unknown watchdog event: "
"~n From: ~p"
"~n To: ~p", [From, To]),
wd;
flooding_which_event({reconnect = Event, _, _}) ->
Event;
flooding_which_event(Event) when is_tuple(Event) ->
?P("Unknown event: "
"~n ~p", [Event]),
element(1, Event);
flooding_which_event(Unknown) ->
?P("Unknown event: "
"~n ~p", [Unknown]),
Expand Down

0 comments on commit 087dbc2

Please sign in to comment.