Skip to content

Commit

Permalink
remove handle-flow-listener-exception-fn as it's not part of `Excep…
Browse files Browse the repository at this point in the history
…tionHandler`
  • Loading branch information
jimpil committed Aug 6, 2023
1 parent 5eadb8f commit dfa6f83
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/clojure/langohr/core.clj
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@
(defn exception-handler
[{:keys [handle-connection-exception-fn
handle-return-listener-exception-fn
handle-flow-listener-exception-fn
;handle-flow-listener-exception-fn
handle-confirm-listener-exception-fn
handle-blocked-listener-exception-fn
handle-consumer-exception-fn
Expand All @@ -258,9 +258,6 @@
(handleReturnListenerException [_ channel throwable]
(when handle-return-listener-exception-fn
(handle-return-listener-exception-fn channel throwable)))
(handleFlowListenerException [_ channel throwable]
(when handle-flow-listener-exception-fn
(handle-flow-listener-exception-fn channel throwable)))
(handleConfirmListenerException [_ channel throwable]
(when handle-confirm-listener-exception-fn
(handle-confirm-listener-exception-fn channel throwable)))
Expand Down

0 comments on commit dfa6f83

Please sign in to comment.