-
Notifications
You must be signed in to change notification settings - Fork 632
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
Fix nil pointers when time.Duration could be nil #2504
Conversation
changelog detected ✅ |
cc @obezuk |
This comment was marked as spam.
This comment was marked as spam.
This will need to be updated with cloudflare/cloudflare-go#1303 |
acceptance tests all passing
|
This functionality has been released in v4.9.0 of the Terraform Cloudflare Provider. Please see the Terraform documentation on provider versioning or reach out if you need any assistance upgrading. For further feature requests or bug reports with this functionality, please create a new GitHub issue following the template. Thank you! |
Fixes #2487
There are some cases when a returned
time.Duration
could be nil for origin request config. I wasn't able to get the nil error 100% of the time but this should handle all cases.