Skip to content
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鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

Catch panics when typechecking warns #1987

Closed
iwahbe opened this issue May 17, 2024 · 0 comments 路 Fixed by #2000
Closed

Catch panics when typechecking warns #1987

iwahbe opened this issue May 17, 2024 · 0 comments 路 Fixed by #2000
Assignees
Labels
kind/enhancement Improvements or new features

Comments

@iwahbe
Copy link
Member

iwahbe commented May 17, 2024

Hello!

  • Vote on this issue by adding a 馃憤 reaction
  • If you want to implement this feature, comment to let us know (we'll work with you on design, scheduling, etc.)

Issue details

Terraform providers are not expected (and do not) handle mistyped input. They often panic on mistypes inputs. When the typechecker fails, we knowingly feed them mistyped input. As long as we continue this practice, we should recover() from upstream panics when there were type checker failures.

This would reduce the impact and improve the error message when types don't line up: helping users to find and address the underlying issue faster and improving confidence in the bridge.

Follow up on #1979.

Affected area/feature

@iwahbe iwahbe added needs-triage Needs attention from the triage team kind/enhancement Improvements or new features labels May 17, 2024
@corymhall corymhall removed the needs-triage Needs attention from the triage team label May 17, 2024
@corymhall corymhall self-assigned this May 17, 2024
corymhall added a commit that referenced this issue May 20, 2024
The type checker is meant to catch user configuration errors that would
eventually cause a panic. We are currently only logging a warning so we
are not preventing the panic from happening. Even though we have the
additional warning, it is still confusing to users and some do not
correlate the warning with the panic.

This PR catches the panic when we do have type errors so that the user
will only see the warning and not the panic.

closes #1987
corymhall added a commit that referenced this issue May 23, 2024
The type checker is meant to catch user configuration errors that would
eventually cause a panic. We are currently only logging a warning so we
are not preventing the panic from happening. Even though we have the
additional warning, it is still confusing to users and some do not
correlate the warning with the panic.

This PR catches the panic when we do have type errors so that the user
will only see the warning and not the panic.

closes #1987
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
kind/enhancement Improvements or new features
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants