We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 597dae4 commit 331eb46Copy full SHA for 331eb46
src/taoensso/faraday.clj
@@ -93,6 +93,7 @@
93
etc."
94
(memoize
95
(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]
98
:as client-opts}]
99
(if (empty? client-opts) (AmazonDynamoDBClient.) ; Default client
@@ -110,6 +111,8 @@
110
111
(doto-cond [g (ClientConfiguration.)]
112
proxy-host (.setProxyHost g)
113
proxy-port (.setProxyPort g)
114
+ proxy-username (.setProxyUsername g)
115
+ proxy-password (.setProxyPassword g)
116
conn-timeout (.setConnectionTimeout g)
117
max-conns (.setMaxConnections g)
118
max-error-retry (.setMaxErrorRetry g)
0 commit comments