-
Notifications
You must be signed in to change notification settings - Fork 21
Error nodes: improve text to include the reason for the failure #28
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
Comments
The exception bubbles up to private fun getChildElements(element: Any, contribution: ITreeStructureContribution): Collection<Any> {
return try {
contribution.getChildElements(element)
} catch (e: java.lang.Exception) {
logger<TreeStructure>().warn(e)
listOf(e)
}
} |
This was referenced Aug 21, 2023
adietish
added a commit
to adietish/intellij-kubernetes
that referenced
this issue
Aug 21, 2023
Signed-off-by: Andre Dietisheim <[email protected]>
adietish
added a commit
to adietish/intellij-kubernetes
that referenced
this issue
Aug 21, 2023
Signed-off-by: Andre Dietisheim <[email protected]>
adietish
added a commit
to adietish/intellij-kubernetes
that referenced
this issue
Aug 21, 2023
Signed-off-by: Andre Dietisheim <[email protected]>
adietish
added a commit
that referenced
this issue
Aug 23, 2023
Signed-off-by: Andre Dietisheim <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
When resources cannot be loaded (bcs of ex. permissions or connection timeout), the error node only reports the failure, doesn't mention the reason. It should also mention why loading failed.
discussed in #23 (comment)
The text was updated successfully, but these errors were encountered: