Skip to content

Commit

Permalink
✨ Minor change on how service middleware are applied
Browse files Browse the repository at this point in the history
  • Loading branch information
niwinz committed Sep 20, 2022
1 parent 92d3015 commit ef2918a
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions backend/src/app/rpc.clj
Original file line number Diff line number Diff line change
Expand Up @@ -157,12 +157,11 @@
[cfg f mdata]
(let [f (as-> f $
(wrap-dispatch cfg $ mdata)
(rlimit/wrap cfg $ mdata)
(rsem/wrap cfg $ mdata)
(retry/wrap-retry cfg $ mdata)
(wrap-audit cfg $ mdata)
(wrap-metrics cfg $ mdata)
)
(retry/wrap-retry cfg $ mdata)
(rsem/wrap cfg $ mdata)
(rlimit/wrap cfg $ mdata)
(wrap-audit cfg $ mdata))

spec (or (::sv/spec mdata) (s/spec any?))
auth? (:auth mdata true)]
Expand Down

0 comments on commit ef2918a

Please sign in to comment.