Skip to content

Commit

Permalink
Apply Spotless
Browse files Browse the repository at this point in the history
  • Loading branch information
brianhuangee authored and liferoad committed Mar 22, 2024
1 parent 118be6e commit 34d3e5d
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -109,8 +109,10 @@ private static PipelineResult run(JdbcConverters.JdbcToBigQueryOptions options)
JdbcIO.DataSourceConfiguration.create(
options.getDriverClassName(),
maybeSecretOrDecrypt(options.getConnectionURL(), options.getKMSEncryptionKey()))
.withUsername(maybeSecretOrDecrypt(options.getUsername(), options.getKMSEncryptionKey()))
.withPassword(maybeSecretOrDecrypt(options.getPassword(), options.getKMSEncryptionKey()))
.withUsername(
maybeSecretOrDecrypt(options.getUsername(), options.getKMSEncryptionKey()))
.withPassword(
maybeSecretOrDecrypt(options.getPassword(), options.getKMSEncryptionKey()))
.withDriverJars(options.getDriverJars());

if (options.getConnectionProperties() != null) {
Expand Down

0 comments on commit 34d3e5d

Please sign in to comment.