Skip to content

Commit

Permalink
Avoid cast exception (#1018)
Browse files Browse the repository at this point in the history
CREDENTIALS property was set as STRING and is read as a PASSWORD. This creates a runtime exception. The change moves the connector configuration to be a password.

Co-authored-by: stheppi <[email protected]>
  • Loading branch information
stheppi and stheppi authored Jan 3, 2024
1 parent 4b8428e commit 0197253
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ trait AuthModeSettingsConfigKeys extends WithConnectorPrefix {
)
.define(
CREDENTIALS,
Type.STRING,
Type.PASSWORD,
"",
Importance.HIGH,
"GCP Credentials if using 'credentials' auth mode.",
Expand Down

0 comments on commit 0197253

Please sign in to comment.