Skip to content

Commit fe9c1e1

Browse files
committed
Change default timeout-ms to 1000 (match Hystrix core)
1 parent 66ee392 commit fe9c1e1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/clj_http_hystrix/core.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
"Create a configurator that can configure the hystrix according to the
4444
declarative config (or some sensible defaults)"
4545
[config]
46-
(let [timeout (:hystrix/timeout-ms config 600)
46+
(let [timeout (:hystrix/timeout-ms config 1000)
4747
group (:hystrix/group-key config :default)
4848
threads (:hystrix/threads config 10)
4949
command-configurator (doto (HystrixCommandProperties/Setter)

0 commit comments

Comments
 (0)