Skip to content

Commit

Permalink
Merge pull request #196 from socrata/rjm/fix-proxy-credentials
Browse files Browse the repository at this point in the history
EN-42469: Don't throw away proxy credentials when building the http client
  • Loading branch information
rjmac authored Oct 7, 2020
2 parents cdbdf23 + 6354b62 commit ac5dea8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/socrata/datasync/HttpUtility.java
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ public HttpUtility(UserPreferences userPrefs, boolean useAuth, int maxRetries, d
BROWSER_COMPATIBLE_HOSTNAME_VERIFIER
);

httpClient = HttpClients.custom().
httpClient = clientBuilder.
setSSLSocketFactory(factory).
setRetryHandler(datasyncDefaultHandler).
setKeepAliveStrategy(datasyncDefaultKeepAliveStrategy).
Expand Down

0 comments on commit ac5dea8

Please sign in to comment.