We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
When using the TerraformImportPlugin, you may see an error similar to the following:
java.lang.StackOverflowError: Excessively nested closures/functions at TerraformImportCommand.getResource(TerraformImportCommand.groovy:46) - look for unbounded recursion - call depth: 1025
The code in question is a simple method
public String getResource() { return this.resource }
It's possible that the this. indirection in the return statement is causing a recursive call to getResouce() in some cases.
this.
getResouce()
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
When using the TerraformImportPlugin, you may see an error similar to the following:
The code in question is a simple method
It's possible that the
this.
indirection in the return statement is causing a recursive call togetResouce()
in some cases.The text was updated successfully, but these errors were encountered: