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
## What
<!--
* Describe what the change is solving. Link all GitHub issues related to this change.
-->
## How
<!--
* Describe how code changes achieve the solution.
-->
## Review guide
<!--
1. `x.py`
2. `y.py`
-->
## User Impact
<!--
* What is the end result perceived by the user?
* If there are negative side effects, please list them.
-->
## Can this PR be safely reverted and rolled back?
<!--
* If unsure, leave it blank.
-->
- [ ] YES 💚
- [ ] NO ❌
Copy file name to clipboardExpand all lines: airbyte-cdk/java/airbyte-cdk/azure-destinations/src/main/kotlin/io/airbyte/cdk/integrations/destination/jdbc/copy/azure/AzureBlobStorageStreamCopier.kt
+4-4
Original file line number
Diff line number
Diff line change
@@ -50,9 +50,9 @@ abstract class AzureBlobStorageStreamCopier(
50
50
@Suppress("DEPRECATION")
51
51
@get:VisibleForTesting
52
52
val tmpTableName:String= nameTransformer.getTmpTableName(streamName)
Copy file name to clipboardExpand all lines: airbyte-cdk/java/airbyte-cdk/core/src/main/kotlin/io/airbyte/cdk/integrations/base/AirbyteExceptionHandler.kt
+1-1
Original file line number
Diff line number
Diff line change
@@ -111,7 +111,7 @@ class AirbyteExceptionHandler : Thread.UncaughtExceptionHandler {
111
111
* 1. Contain the original exception message as the external message, and a mangled message
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
+3-4
Original file line number
Diff line number
Diff line change
@@ -58,14 +58,13 @@ class BufferDequeue(
58
58
val output:MutableList<StreamAwareQueue.MessageWithMeta> =LinkedList()
Copy file name to clipboardExpand all lines: airbyte-cdk/java/airbyte-cdk/core/src/main/kotlin/io/airbyte/cdk/integrations/destination/async/buffers/MemoryBoundedLinkedBlockingQueue.kt
+6-6
Original file line number
Diff line number
Diff line change
@@ -28,7 +28,7 @@ private val logger = KotlinLogging.logger {}
Copy file name to clipboardExpand all lines: airbyte-cdk/java/airbyte-cdk/core/src/main/kotlin/io/airbyte/cdk/integrations/destination/async/buffers/StreamAwareQueue.kt
+4-4
Original file line number
Diff line number
Diff line change
@@ -37,7 +37,7 @@ class StreamAwareQueue(maxMemoryUsage: Long) {
Copy file name to clipboardExpand all lines: airbyte-cdk/java/airbyte-cdk/core/src/main/kotlin/io/airbyte/cdk/integrations/destination/async/state/GlobalAsyncStateManager.kt
+2-2
Original file line number
Diff line number
Diff line change
@@ -154,7 +154,7 @@ class GlobalAsyncStateManager(private val memoryManager: GlobalMemoryManager) {
154
154
var bytesFlushed:Long=0L
155
155
logger.info { "Flushing states" }
156
156
synchronized(lock) {
157
-
for (entry:Map.Entry<StreamDescriptor, LinkedBlockingDeque<Long>?>in
157
+
for (entry:Map.Entry<StreamDescriptor, LinkedBlockingDeque<Long>> in
158
158
descToStateIdQ.entries) {
159
159
// Remove all states with 0 counters.
160
160
// Per-stream synchronized is required to make sure the state (at the head of the
@@ -196,7 +196,7 @@ class GlobalAsyncStateManager(private val memoryManager: GlobalMemoryManager) {
Copy file name to clipboardExpand all lines: airbyte-cdk/java/airbyte-cdk/core/src/main/kotlin/io/airbyte/cdk/integrations/destination/jdbc/SqlOperations.kt
Copy file name to clipboardExpand all lines: airbyte-cdk/java/airbyte-cdk/core/src/main/kotlin/io/airbyte/cdk/integrations/destination/staging/StagingOperations.kt
0 commit comments