Skip to content

Commit

Permalink
Fix failing test due to JDBC NPE in 3.14.3
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-japatel committed Nov 10, 2023
1 parent c152ac2 commit da1636a
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -253,6 +253,8 @@ protected static Properties generateProxyParametersIfRequired(Map<String, String
proxyProperties.put(SFSessionProperty.PROXY_USER.getPropertyKey(), username);
proxyProperties.put(SFSessionProperty.PROXY_PASSWORD.getPropertyKey(), password);
}
// There is a change in JDBC version 3.13.31 which causes NPE if this is not added.
proxyProperties.put(SFSessionProperty.GZIP_DISABLED.getPropertyKey(), "false");
}
return proxyProperties;
}
Expand Down

0 comments on commit da1636a

Please sign in to comment.