Skip to content

Commit

Permalink
Increase default write timeout
Browse files Browse the repository at this point in the history
Increase the default value for the write timeout to 5 seconds.
  • Loading branch information
mnuessler committed May 15, 2016
1 parent 2725827 commit 80e3b54
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/clojure/influxdb_clojure/core.clj
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
(def ^:private connection-default-opts
{:connect-timeout (* 1 1000)
:read-timeout (* 5 1000)
:write-timeout (* 1 1000)})
:write-timeout (* 5 1000)})

(defn- default-client [opts]
(let [{:keys [connect-timeout
Expand Down

0 comments on commit 80e3b54

Please sign in to comment.