Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,13 +50,13 @@ TOC Created by [gh-md-toc](https://github.com/ekalinin/github-markdown-toc)
Including the library in `project.clj`

```clojure
[com.appsflyer/donkey "0.5.2"]
[com.appsflyer/donkey "0.5.3-SNAPSHOT"]
```

Including the library in `deps.edn`

```clojure
com.appsflyer/donkey {:mvn/version "0.5.2"}
com.appsflyer/donkey {:mvn/version "0.5.3-SNAPSHOT"}
```

Including the library in `pom.xml`
Expand All @@ -65,7 +65,7 @@ Including the library in `pom.xml`
<dependency>
<groupId>com.appsflyer</groupId>
<artifactId>donkey</artifactId>
<version>0.5.2</version>
<version>0.5.3-SNAPSHOT</version>
</dependency>
```

Expand Down Expand Up @@ -1031,14 +1031,14 @@ when importing Donkey. For example:
project.clj

```clojure
:dependencies [com.appsflyer/donkey "0.5.2" :exclusions [io.dropwizard.metrics/metrics-core]]
:dependencies [com.appsflyer/donkey "0.5.3-SNAPSHOT" :exclusions [io.dropwizard.metrics/metrics-core]]
```

deps.edn

```clojure
{:deps
{com.appsflyer/donkey {:mvn/version "0.5.2"
{com.appsflyer/donkey {:mvn/version "0.5.3-SNAPSHOT"
:exclusions [io.dropwizard.metrics/metrics-core]}}}
```

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
<description>Clojure Server and Client</description>
<groupId>com.appsflyer</groupId>
<artifactId>donkey</artifactId>
<version>0.5.2</version>
<version>0.5.3-SNAPSHOT</version>
<packaging>clojure</packaging>
<url>https://github.com/AppsFlyer/donkey</url>
<inceptionYear>2020</inceptionYear>
Expand Down
2 changes: 1 addition & 1 deletion project.clj
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
(def ^:private ^:const ring-json-version "0.5.1")
(def ^:private ^:const criterium-version "0.4.6")

(defproject com.appsflyer/donkey "0.5.2"
(defproject com.appsflyer/donkey "0.5.3-SNAPSHOT"
:description "Clojure Server and Client"
:url "https://github.com/AppsFlyer/donkey"
:license {:name "APACHE LICENSE, VERSION 2.0"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ public void addBodyHandler(Route route) {
@Override
public void addHandler(Route route, Handler<RoutingContext> handler, HandlerMode handlerMode) {
if (handlerMode == HandlerMode.BLOCKING) {
route.blockingHandler(handler);
route.blockingHandler(handler,false);
} else {
route.handler(handler);
}
Expand Down