-
Notifications
You must be signed in to change notification settings - Fork 45
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
New livedns record: context deadline exceeded #145
Comments
I'm getting this issue intermittently, did you find a workaround ? @dan-mcdonald |
We do have the same problem and it appears quite often on our
which we are definitively not hitting. Moreover, looking at the code / reference there is a (strange) custom default key to configure the timeout for the nemserver records: https://registry.terraform.io/providers/go-gandi/gandi/latest/docs/resources/nameservers#default Adding this block in the resource did not even fix the problem: resource "gandi_nameservers" "example" {
...
timeouts {
default = 60
}
} Note The provider code has some code for a default timeout, which is not exposed in the provider configuration, with a default value of 5 seconds. 🤷 Footnotes |
I'm running into this essentially every time I run It seems like the plugin passes config back to the terraform-provider-gandi/gandi/provider.go Lines 84 to 106 in c38a15f
The library exposes a Ideally Gandi would fix their API so it wasn't so slow, but as an interim solution it'd be nice to be able to override the timeout config |
Workaround for go-gandi#145
We solved it the hard way... moving away from Gandi. |
I am still getting this error just trying to do a simple |
I'm trying to add a new
A
record to my Gandi LiveDNS with this provider.But during apply I get this error (run with TF_LOG=INFO):
I think the request will work if it is given more time. My internet connection is not the fastest. Is there a configuration knob to increase the timeout? Currently it fails for me after only 10/15 seconds.
Other details:
Any help you provide is appreciated. I know I'm not entitled to any free help.
The text was updated successfully, but these errors were encountered: