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
Describe the bug While debugging #2171 with builtin providers, I noticed that cleanup is not happening.
For ebs and gcp snapshot scanning, we call some cleanup after the scan is done. This cleanup is triggered via the provider shutdown. But builtin providers are added to the running providers, so they aren't shut down later: https://github.com/mondoohq/cnquery/blob/main/providers/coordinator.go#L107-L117
This makes debugging harder.
To Reproduce Steps to reproduce the behavior:
Expected behavior We should be able to execute this cleanup also with builtin providers.
The text was updated successfully, but these errors were encountered:
this should now work with the new disconnect logic
Sorry, something went wrong.
No branches or pull requests
Describe the bug
While debugging #2171 with builtin providers, I noticed that cleanup is not happening.
For ebs and gcp snapshot scanning, we call some cleanup after the scan is done. This cleanup is triggered via the provider shutdown. But builtin providers are added to the running providers, so they aren't shut down later:
https://github.com/mondoohq/cnquery/blob/main/providers/coordinator.go#L107-L117
This makes debugging harder.
To Reproduce
Steps to reproduce the behavior:
Expected behavior
We should be able to execute this cleanup also with builtin providers.
The text was updated successfully, but these errors were encountered: