You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: airbyte-cdk/java/airbyte-cdk/core/src/main/kotlin/io/airbyte/cdk/integrations/base/spec_modification/SpecModifyingSource.kt
+2-2
Original file line number
Diff line number
Diff line change
@@ -35,7 +35,7 @@ abstract class SpecModifyingSource(private val source: Source) : Source {
35
35
@Throws(Exception::class)
36
36
overridefunread(
37
37
config:JsonNode,
38
-
catalog:ConfiguredAirbyteCatalog?,
38
+
catalog:ConfiguredAirbyteCatalog,
39
39
state:JsonNode?
40
40
): AutoCloseableIterator<AirbyteMessage> {
41
41
return source.read(config, catalog, state)
@@ -44,7 +44,7 @@ abstract class SpecModifyingSource(private val source: Source) : Source {
Copy file name to clipboardExpand all lines: airbyte-cdk/java/airbyte-cdk/core/src/main/kotlin/io/airbyte/cdk/integrations/base/ssh/SshWrappedSource.kt
+2-2
Original file line number
Diff line number
Diff line change
@@ -76,7 +76,7 @@ class SshWrappedSource : Source {
76
76
@Throws(Exception::class)
77
77
overridefunread(
78
78
config:JsonNode,
79
-
catalog:ConfiguredAirbyteCatalog?,
79
+
catalog:ConfiguredAirbyteCatalog,
80
80
state:JsonNode?
81
81
): AutoCloseableIterator<AirbyteMessage> {
82
82
val tunnel:SshTunnel=SshTunnel.Companion.getInstance(config, hostKey, portKey)
@@ -97,7 +97,7 @@ class SshWrappedSource : Source {
Copy file name to clipboardExpand all lines: airbyte-cdk/java/airbyte-cdk/db-sources/src/main/kotlin/io/airbyte/cdk/integrations/debezium/AirbyteDebeziumHandler.kt
Copy file name to clipboardExpand all lines: airbyte-cdk/java/airbyte-cdk/db-sources/src/main/kotlin/io/airbyte/cdk/integrations/debezium/CdcMetadataInjector.kt
Copy file name to clipboardExpand all lines: airbyte-cdk/java/airbyte-cdk/db-sources/src/main/kotlin/io/airbyte/cdk/integrations/debezium/CdcSavedInfoFetcher.kt
+1-1
Original file line number
Diff line number
Diff line change
@@ -14,5 +14,5 @@ import java.util.*
14
14
interfaceCdcSavedInfoFetcher {
15
15
val savedOffset:JsonNode?
16
16
17
-
val savedSchemaHistory:AirbyteSchemaHistoryStorage.SchemaHistory<Optional<JsonNode?>?>?
17
+
val savedSchemaHistory:AirbyteSchemaHistoryStorage.SchemaHistory<Optional<JsonNode>>?
0 commit comments