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/bulk/core/load/src/integrationTest/kotlin/io/airbyte/cdk/load/mock_integration_test/MockBasicFunctionalityIntegrationTest.kt
Copy file name to clipboardexpand all lines: airbyte-cdk/java/airbyte-cdk/core/src/main/kotlin/io/airbyte/cdk/integrations/destination/async/AsyncStreamConsumer.kt
Copy file name to clipboardexpand all lines: airbyte-cdk/java/airbyte-cdk/core/src/main/kotlin/io/airbyte/cdk/integrations/destination/async/DetectStreamToFlush.kt
Copy file name to clipboardexpand all lines: airbyte-cdk/java/airbyte-cdk/core/src/main/kotlin/io/airbyte/cdk/integrations/destination/async/FlushWorkers.kt
Copy file name to clipboardexpand all lines: airbyte-cdk/java/airbyte-cdk/core/src/main/kotlin/io/airbyte/cdk/integrations/destination/async/buffers/BufferDequeue.kt
+1-1
Original file line number
Diff line number
Diff line change
@@ -63,7 +63,7 @@ class BufferDequeue(
63
63
64
64
// otherwise pull records until we hit the memory limit.
65
65
val newSize:Long= (memoryItem.size) + bytesRead.get()
66
-
if (newSize <= optimalBytesToRead) {
66
+
if (newSize <= optimalBytesToRead|| output.isEmpty()) {
Copy file name to clipboardexpand all lines: airbyte-cdk/java/airbyte-cdk/core/src/main/kotlin/io/airbyte/cdk/integrations/destination/async/model/PartialAirbyteRecordMessage.kt
Copy file name to clipboardexpand all lines: airbyte-cdk/java/airbyte-cdk/core/src/test/kotlin/io/airbyte/cdk/integrations/destination/async/AsyncStreamConsumerTest.kt
+4-1
Original file line number
Diff line number
Diff line change
@@ -765,6 +765,9 @@ class AsyncStreamConsumerTest {
Copy file name to clipboardexpand all lines: airbyte-cdk/java/airbyte-cdk/core/src/test/kotlin/io/airbyte/cdk/integrations/destination/async/DetectStreamToFlushTest.kt
+47-3
Original file line number
Diff line number
Diff line change
@@ -49,7 +49,13 @@ class DetectStreamToFlushTest {
Copy file name to clipboardexpand all lines: airbyte-cdk/java/airbyte-cdk/db-destinations/src/testFixtures/kotlin/io/airbyte/cdk/integrations/standardtest/destination/BaseDestinationAcceptanceTest.kt
Copy file name to clipboardexpand all lines: airbyte-cdk/java/airbyte-cdk/db-sources/src/testFixtures/kotlin/io/airbyte/cdk/integrations/standardtest/source/AbstractSourceConnectorTest.kt
+1
Original file line number
Diff line number
Diff line change
@@ -117,6 +117,7 @@ abstract class AbstractSourceConnectorTest {
Copy file name to clipboardexpand all lines: airbyte-cdk/java/airbyte-cdk/dependencies/src/main/kotlin/io/airbyte/commons/features/EnvVariableFeatureFlags.kt
+14
Original file line number
Diff line number
Diff line change
@@ -4,6 +4,7 @@
4
4
packageio.airbyte.commons.features
5
5
6
6
importio.github.oshai.kotlinlogging.KotlinLogging
7
+
importjava.nio.file.Path
7
8
importjava.util.function.Function
8
9
9
10
privateval log =KotlinLogging.logger {}
@@ -46,6 +47,16 @@ class EnvVariableFeatureFlags : FeatureFlags {
0 commit comments