Skip to content

Commit

Permalink
update Java lib and release 0.2.4
Browse files Browse the repository at this point in the history
  • Loading branch information
barkanido committed Feb 19, 2019
1 parent dd0b918 commit 089af1b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Binary file modified CHANGELOG.md
Binary file not shown.
4 changes: 2 additions & 2 deletions project.clj
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
(defproject aerospike-clj "0.2.3-SNAPSHOT"
(defproject aerospike-clj "0.2.4"
:description "An Aerospike Clojure client."
:url "https://github.com/AppsFlyer/aerospike-clj"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[com.aerospike/aerospike-client "4.2.3"]
:dependencies [[com.aerospike/aerospike-client "4.3.0"]
[manifold "0.1.8"]
[com.taoensso/timbre "4.10.0"]]
:plugins [[lein-codox "0.10.5"]]
Expand Down
4 changes: 2 additions & 2 deletions test/aerospike_clj/client_test.clj
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,7 @@
;; If socketTimeout is reached, reads also try nodes containing replicated partitions,
;; but writes remain on master node.)))
;; This option requires ClientPolicy.requestProleReplicas to be enabled in order to function properly.
(is (zero? (.socketTimeout rp))) ;; no socket idle time limit
(is (= 30000 (.socketTimeout rp))) ;; 30 seconds default
(is (zero? (.totalTimeout rp))) ;; no time limit
(is (= 3000 (.timeoutDelay rp))) ;; no delay, connection closed on timeout
(is (= 2 (.maxRetries rp))) ;; initial attempt + 2 retries = 3 attempts
Expand Down Expand Up @@ -348,7 +348,7 @@
;; If socketTimeout is reached, reads also try nodes containing replicated partitions,
;; but writes remain on master node.)))
;; This option requires ClientPolicy.requestProleReplicas to be enabled in order to function properly.
(is (zero? (.socketTimeout rp))) ;; no socket idle time limit
(is (= 30000 (.socketTimeout rp))) ;; 30 seconds default
(is (zero? (.totalTimeout rp))) ;; no time limit
(is (= 3000 (.timeoutDelay rp))) ;; no delay, connection closed on timeout
(is (= 2 (.maxRetries rp))) ;; initial attempt + 2 retries = 3 attempts
Expand Down

0 comments on commit 089af1b

Please sign in to comment.