Undoing retrying

This commit is contained in:
Bryce Covert
2020-12-21 10:54:31 -08:00
parent b52f3231e8
commit 53178e64c7

View File

@@ -17,8 +17,13 @@
(def other-config
(if (:yodlee-proxy-host env)
{:proxy-host (:yodlee-proxy-host env)
:proxy-port (:yodlee-proxy-port env)}
{}))
:proxy-port (:yodlee-proxy-port env)
:retry-handler (fn [ex try-count http-context]
(log/error "yodlee Error." ex)
false)}
{:retry-handler (fn [ex try-count http-context]
(log/error "yodlee Error." ex)
false)}))
(def base-headers {"Api-Version" "1.1"
"Cobrand-Name" (:yodlee-cobrand-name env)