File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change 9393 etc."
9494 (memoize
9595 (fn [{:keys [provider creds access-key secret-key endpoint proxy-host proxy-port
96- proxy-username proxy-password
97- conn-timeout max-conns max-error-retry socket-timeout]
96+ proxy-username proxy-password
97+ conn-timeout max-conns max-error-retry socket-timeout keep-alive? ]
9898 :as client-opts}]
9999 (if (empty? client-opts) (AmazonDynamoDBClient. ) ; Default client
100100 (let [creds (or creds (:credentials client-opts)) ; Deprecated opt
116116 conn-timeout (.setConnectionTimeout g)
117117 max-conns (.setMaxConnections g)
118118 max-error-retry (.setMaxErrorRetry g)
119- socket-timeout (.setSocketTimeout g))]
119+ socket-timeout (.setSocketTimeout g)
120+ keep-alive? (.setUseTcpKeepAlive g))]
120121 (doto-cond [g (if provider
121122 (AmazonDynamoDBClient. provider client-config)
122123 (AmazonDynamoDBClient. aws-creds client-config))]
You can’t perform that action at this time.
0 commit comments