Move vertx as vendor package.

This commit is contained in:
Andrey Antukh 2020-01-13 16:50:44 +01:00
parent 8663f5a136
commit bd5f25eabf
21 changed files with 927 additions and 15 deletions

View file

@ -30,6 +30,12 @@
{:status 400
:body response})))
(defmethod handle-exception :ratelimit
[err req]
{:status 429
:headers {"retry-after" 1000}
:body ""})
(defmethod handle-exception :not-found
[err req]
(let [response (ex-data err)]