-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
suppressed warning about password in code
- Loading branch information
alexradzin
committed
Nov 26, 2023
1 parent
2fe0e6b
commit 566e64b
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 { | ||
|