Skip to content

Commit 3d98479

Browse files
committed
cdk-threadcreationinfo-nullable
1 parent 82f8e99 commit 3d98479

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

airbyte-cdk/java/airbyte-cdk/README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,8 @@ corresponds to that version.
174174

175175
| Version | Date | Pull Request | Subject |
176176
|:--------|:-----------|:-----------------------------------------------------------|:---------------------------------------------------------------------------------------------------------------------------------------------------------------|
177-
| 0.35.13 | 2024-05-28 | [\#38632](https://github.com/airbytehq/airbyte/pull/38632) | minor changes to allow conversion of snowflake tests to kotlin |
177+
| 0.35.14 | 2024-05-28 | [\#38738](https://github.com/airbytehq/airbyte/pull/38738) | make ThreadCreationInfo cast as nullable |
178+
| 0.35.13 | 2024-05-28 | [\#38632](https://github.com/airbytehq/airbyte/pull/38632) | minor changes to allow conversion of snowflake tests to kotlin |
178179
| 0.35.12 | 2024-05-23 | [\#38638](https://github.com/airbytehq/airbyte/pull/38638) | Minor change to support Snowflake conversion to Kotlin |
179180
| 0.35.11 | 2024-05-23 | [\#38357](https://github.com/airbytehq/airbyte/pull/38357) | This release fixes an error on the previous release. |
180181
| 0.35.10 | 2024-05-23 | [\#38357](https://github.com/airbytehq/airbyte/pull/38357) | Add shared code for db sources stream status trace messages and testing. |

airbyte-cdk/java/airbyte-cdk/core/src/main/kotlin/io/airbyte/cdk/integrations/base/IntegrationRunner.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -385,8 +385,8 @@ internal constructor(
385385
}
386386

387387
@JvmStatic
388-
fun getThreadCreationInfo(thread: Thread): ThreadCreationInfo {
389-
return getMethod.invoke(threadCreationInfo, thread) as ThreadCreationInfo
388+
fun getThreadCreationInfo(thread: Thread): ThreadCreationInfo? {
389+
return getMethod.invoke(threadCreationInfo, thread) as ThreadCreationInfo?
390390
}
391391

392392
/**
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version=0.35.13
1+
version=0.35.14

0 commit comments

Comments
 (0)