File tree 3 files changed +4
-7
lines changed
airbyte-cdk/java/airbyte-cdk
datastore-postgres/src/main/kotlin/io/airbyte/cdk/integrations/util
3 files changed +4
-7
lines changed Original file line number Diff line number Diff line change @@ -174,6 +174,7 @@ corresponds to that version.
174
174
175
175
| Version | Date | Pull Request | Subject |
176
176
| :-----------| :-----------| :------------------------------------------------------------| :---------------------------------------------------------------------------------------------------------------------------------------------------------------|
177
+ | 0.48.5 | 2025-01-16 | [ \# 51583] ( https://github.com/airbytehq/airbyte/pull/51583 ) | Also save SSL key to /tmp in destination-postgres |
177
178
| 0.48.4 | 2024-12-24 | [ \# 50410] ( https://github.com/airbytehq/airbyte/pull/50410 ) | Save SSL key to /tmp |
178
179
| 0.48.3 | 2024-12-23 | [ \# 49858] ( https://github.com/airbytehq/airbyte/pull/49858 ) | Relax various Destination CDK methods visibility. |
179
180
| 0.48.1 | 2024-11-13 | [ \# 48482] ( https://github.com/airbytehq/airbyte/pull/48482 ) | Adding support converting very large numbers via BigInteger |
Original file line number Diff line number Diff line change 1
- version =0.48.4
1
+ version =0.48.5
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ object PostgresSslConnectionUtils {
28
28
const val VERIFY_FULL : String = " verify-full"
29
29
const val DISABLE : String = " disable"
30
30
const val TRUE_STRING_VALUE : String = " true"
31
- const val ENCRYPT_FILE_NAME : String = " encrypt"
31
+ const val ENCRYPT_FILE_NAME : String = " /tmp/ encrypt"
32
32
const val FACTORY_VALUE : String = " org.postgresql.ssl.DefaultJavaSSLFactory"
33
33
34
34
@JvmStatic
@@ -68,11 +68,7 @@ object PostgresSslConnectionUtils {
68
68
if (file.exists()) {
69
69
keyStorePassword = readFile(file)
70
70
} else {
71
- try {
72
- createCertificateFile(ENCRYPT_FILE_NAME , keyStorePassword)
73
- } catch (e: IOException ) {
74
- throw RuntimeException (" Failed to create encryption file " )
75
- }
71
+ createCertificateFile(ENCRYPT_FILE_NAME , keyStorePassword)
76
72
}
77
73
} else {
78
74
keyStorePassword = sslPassword
You can’t perform that action at this time.
0 commit comments