Skip to content

Commit 88e675b

Browse files
committed
fix: listJobs sort key (#14605)
1 parent 3b8c018 commit 88e675b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

airbyte-connector-rollout-worker/src/main/kotlin/io/airbyte/connector/rollout/worker/ConnectorRolloutWorkflowImpl.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,11 +39,11 @@ class ConnectorRolloutWorkflowImpl : ConnectorRolloutWorkflow {
3939
private val defaultActivityOptions =
4040
ActivityOptions
4141
.newBuilder()
42-
.setStartToCloseTimeout(Duration.ofSeconds(10))
42+
.setStartToCloseTimeout(Duration.ofSeconds(600))
4343
.setRetryOptions(
4444
RetryOptions
4545
.newBuilder()
46-
.setMaximumInterval(Duration.ofSeconds(20))
46+
.setMaximumInterval(Duration.ofSeconds(600))
4747
.setMaximumAttempts(1)
4848
.setDoNotRetry("org.openapitools.client.infrastructure.ClientException")
4949
.build(),

airbyte-data/src/main/kotlin/io/airbyte/data/services/JobService.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ interface JobService {
1616
createdAtEnd: OffsetDateTime?,
1717
updatedAtStart: OffsetDateTime?,
1818
updatedAtEnd: OffsetDateTime?,
19-
orderByField: String? = "created_at",
19+
orderByField: String? = "createdAt",
2020
orderByMethod: String? = "desc",
2121
): List<Job>
2222
}

0 commit comments

Comments
 (0)