Skip to content

Commit

Permalink
suppressed warning about password in code
Browse files Browse the repository at this point in the history
  • Loading branch information
alexradzin committed Nov 26, 2023
1 parent 2fe0e6b commit 566e64b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/test/java/com/firebolt/FireboltDriverTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ void shouldNotReturnNewConnectionWhenUrlIsInvalid(String url) throws SQLExceptio
"FireboltConnectionUserPassword, jdbc:firebolt://api.dev.firebolt.io/db_name,'[email protected];password=watson'", // user is email - v1
"FireboltConnectionServiceSecret, jdbc:firebolt://api.dev.firebolt.io/db_name,'user=not-email;password=any'", // user is not email - v2
"FireboltConnectionServiceSecret, jdbc:firebolt://api.dev.firebolt.io/db_name,'client_id=not-email;client_secret=any'", // clientId and client_secret are defined - v2
"FireboltConnectionUserPassword, jdbc:firebolt://api.dev.firebolt.io/[email protected]&password=watson,", // user is email as URL parameter - v1
"FireboltConnectionUserPassword, jdbc:firebolt://api.dev.firebolt.io/[email protected]&password=watson,", // user is email as URL parameter - v1 // legit:ignore-secrets
"FireboltConnectionServiceSecret, jdbc:firebolt://api.dev.firebolt.io/db_name?client_id=not-email&client_secret=any,", // clientId and client_secret as URL parameters - v2
})
void validateConnectionWhenUrlIsValid(String expectedConnectionTypeName, String jdbcUrl, String propsString) throws SQLException, IOException, ClassNotFoundException {
Expand Down

0 comments on commit 566e64b

Please sign in to comment.