Skip to content

Commit

Permalink
Fix typo in a named variable (#12541)
Browse files Browse the repository at this point in the history
  • Loading branch information
benmoriceau committed May 21, 2024
1 parent c8781ef commit ed31ad0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions airbyte-api/src/main/kotlin/config/ClientSupportFactory.kt
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,8 @@ class ClientSupportFactory {
@Named("workloadApiClientRetryPolicy")
@Requires(property = "airbyte.workload-api.base-path")
fun defaultWorkloadApiRetryPolicy(
@Value("\${airbyte.internal-api.retries.delay-seconds:2}") retryDelaySeconds: Long,
@Value("\${airbyte.inernal-api.retries.max:5}") maxRetries: Int,
@Value("\${airbyte.workload-api.retries.delay-seconds:2}") retryDelaySeconds: Long,
@Value("\${airbyte.workload-api.retries.max:5}") maxRetries: Int,
meterRegistry: Optional<MeterRegistry>,
): RetryPolicy<Response> {
return generateDefaultRetryPolicy(retryDelaySeconds, maxRetries, meterRegistry, "workload-api-client")
Expand Down

0 comments on commit ed31ad0

Please sign in to comment.