Skip to content

Commit acd4e5d

Browse files
committed
fix: typo in variable name (#16979)
1 parent 64d20ea commit acd4e5d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

airbyte-workers/src/main/kotlin/io/airbyte/workers/temporal/sync/SyncWorkflowV2Impl.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ open class SyncWorkflowV2Impl : SyncWorkflowV2 {
137137
): ConnectorJobOutput {
138138
val workflowId = "replication_$jobId"
139139
val taskQueue = getTaskQueue(TemporalJobType.SYNC)
140-
val childCheck =
140+
val childReplicate =
141141
Workflow.newChildWorkflowStub(
142142
ConnectorCommandWorkflow::class.java,
143143
ChildWorkflowOptions
@@ -148,7 +148,7 @@ open class SyncWorkflowV2Impl : SyncWorkflowV2 {
148148
.build(),
149149
)
150150

151-
return childCheck.run(
151+
return childReplicate.run(
152152
ReplicationCommandApiInput(
153153
ReplicationCommandApiInput.ReplicationApiInput(
154154
connectionId = connectionId,

0 commit comments

Comments
 (0)