fix: retry plugin cache errors in terraform_validate#996
Closed
AruneshDwivedi wants to merge 1 commit into
Closed
Conversation
…y list When TF_PLUGIN_CACHE_DIR is set and multiple terraform validate processes run in parallel, the plugin cache can be in an inconsistent state, causing errors like: - could not retrieve the list of available versions for provider - unexpected value returned by API - plugin is cached but contents have changed - the plugin cache directory is invalid These errors are now caught by match_validate_errors and retried via the existing --retry-once-with-cleanup mechanism. Signed-off-by: Arunesh Dwivedi <arunesh.devops@gmail.com>
📝 WalkthroughWalkthroughThe ChangesRetryable Error Pattern Expansion
Estimated code review effort🎯 1 (Trivial) | ⏱️ ~3 minutes 🚥 Pre-merge checks | ✅ 5✅ Passed checks (5 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
When TF_PLUGIN_CACHE_DIR is used with parallelism (from #620), concurrent terraform validate processes can corrupt the plugin cache, causing intermittent failures.
I kept hitting this in our CI where multiple pre-commit hooks run in parallel. The errors look like:
All of these go away on retry. The existing
--retry-once-with-cleanupflag already handles retrying after clearing.terraform/modulesand.terraform/providers-- these errors just weren't in the match list.This PR adds them to
match_validate_errorsinhooks/terraform_validate.sh. That's the same function that already catches "Module source has changed", "Could not load plugin", etc. No other changes to the init or validate flow.After adding these patterns, our CI runs pass consistently without the 2-3 retries we were seeing before.
Related to #640