Skip to content

Commit

Permalink
delay backoff
Browse files Browse the repository at this point in the history
  • Loading branch information
max-ostapenko committed Dec 10, 2024
1 parent 0d682fd commit cf80f71
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions infra/tf/function_dataform_export.tf
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ resource "google_pubsub_subscription" "dataform_export" {
}
}
retry_policy {
maximum_backoff = "60s"
minimum_backoff = "10s"
maximum_backoff = "600s"
minimum_backoff = "600s"
}
}
4 changes: 2 additions & 2 deletions infra/tf/function_dataform_trigger.tf
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,8 @@ resource "google_pubsub_subscription" "dataform_crawl_complete" {
}
}
retry_policy {
maximum_backoff = "60s"
minimum_backoff = "10s"
maximum_backoff = "600s"
minimum_backoff = "600s"
}
}

Expand Down

0 comments on commit cf80f71

Please sign in to comment.