diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/rabbit_event.erl | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/rabbit_event.erl b/src/rabbit_event.erl index 8872690092..d3cd1a63e8 100644 --- a/src/rabbit_event.erl +++ b/src/rabbit_event.erl @@ -157,10 +157,10 @@ notify(Type, Props, Ref) -> sync_notify(Type, Props) -> sync_notify(Type, Props, none). sync_notify(Type, Props, Ref) -> - do_notify(sync_notify, #event{ type = Type, - props = Props, - reference = Ref, - timestamp = os:timestamp()}). + do_notify(sync_notify, #event{type = Type, + props = Props, + reference = Ref, + timestamp = os:timestamp()}). do_notify(F, Event) -> apply(gen_event, F, [?MODULE, Event]). |
