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
Hello! small update: we've tracked down the issue to some inconsistency in the upstream API for normalizing that string. Terraform has a similar bug filed against it now, I'll file a bug with the pubsub team internally.
The best way to get traction is to talk to GCP support for the pubsub issue specifically. But I'll see if I can push on the pubsub team a little bit as well.
Describe the bug
The pubsub_v1beta1_pubsubsubscription retryPolicy object describes
maximumBackoff
andminimumBackoff
accepting fractional digits in the optional durations:They only seem to accept non-fractional durations, e.g.
"3s"
.ConfigConnector Version
1.36.0
To Reproduce
spec.retryPolicy.minimumBackoff: "60.0s"
. Apply changes. Expected outcome: The subscription resource starts flickering betweenUpdating
/UpToDate
indefinitely.spec.retryPolicy.minimumBackoff: "60s"
and applying works as expected and it settles asUpToDate
.YAML snippets:
The text was updated successfully, but these errors were encountered: