We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5475fb6 commit 40d57daCopy full SHA for 40d57da
src/main/java/net/snowflake/client/core/CredentialManager.java
@@ -180,7 +180,10 @@ synchronized void fillCachedCredential(
180
if (base64EncodedCred != null && credType != CachedCredentialType.DPOP_BUNDLED_ACCESS_TOKEN) {
181
try {
182
cred = new String(Base64.getDecoder().decode(base64EncodedCred));
183
- } catch (Exception e) { // handle legacy non-base64 encoded cache values (CredentialManager fails to decode)
+ } catch (
184
+ Exception
185
+ e) { // handle legacy non-base64 encoded cache values (CredentialManager fails to
186
+ // decode)
187
deleteTemporaryCredential(host, username, credType);
188
return;
189
}
0 commit comments