Skip to content

Commit 8d63f3e

Browse files
rodireichclaude
andauthored
fix: write SSL client keystore to temp dir instead of CWD (#75539)
Co-authored-by: Claude <noreply@anthropic.com>
1 parent 3d05618 commit 8d63f3e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

airbyte-integrations/connectors/source-postgres/src/main/kotlin/io/airbyte/integrations/source/postgres/config/PostgresSourceConfiguration.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -327,7 +327,7 @@ constructor(
327327
sslData.clientCertificate,
328328
sslData.clientKey,
329329
password,
330-
directory = ""
330+
directory = Files.createTempDirectory("ssl-keystore").toString()
331331
)
332332
}
333333
extraJdbcProperties[CLIENT_KEY_STORE_URL] =

0 commit comments

Comments
 (0)