minor fixes.

This commit is contained in:
2021-11-30 18:22:07 -08:00
parent 30a4594333
commit a992fcb5d5
2 changed files with 7 additions and 3 deletions

View File

@@ -464,7 +464,7 @@
raw-transactions (vec (->> rows
(filter #(not (seq (:errors %))) )
(map (fn [row]
(select-keys row [:description-original :client-code :status :high-level-category :amount :bank-account-id :date])))))]
(select-keys row [:description-original :client-code :status :high-level-category :amount :bank-account-id :date :client-id])))))]
(manual-import raw-transactions)
{:status 200

View File

@@ -20,10 +20,14 @@
:proxy-port (:yodlee-proxy-port env)
:retry-handler (fn [ex try-count http-context]
(log/error "yodlee Error." ex)
false)}
false)
:socket-timeout 60000
:connection-timeout 60000}
{:retry-handler (fn [ex try-count http-context]
(log/error "yodlee Error." ex)
false)}))
false)
:socket-timeout 60000
:connection-timeout 60000}))
(defn retry-thrice
([x] (retry-thrice x 0))