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
related to: redhat-developer/intellij-common#240
Turns out that in IC-2024.3 trying to setup the odo binary (and any other cli binary) would fail with the following:
IC-2024.3
java.lang.IllegalStateException: Calling invokeAndWait from read-action leads to possible deadlock.
This is caused by the following call in ApplicationsRootNode
ReadAction.compute(() -> ToolFactory.getInstance() .createOdo(project) .thenApply(tool -> { ApplicationRootNodeOdo odo = new ApplicationRootNodeOdo(tool.get(), tool.isDownloaded(), this, processHelper); loadProjectModel(odo, project); return odo; }));
The ReadAction is required because the project is used.
ReadAction
The text was updated successfully, but these errors were encountered:
adietish
No branches or pull requests
related to: redhat-developer/intellij-common#240
Turns out that in
IC-2024.3
trying to setup the odo binary (and any other cli binary) would fail with the following:This is caused by the following call in ApplicationsRootNode
The
ReadAction
is required because the project is used.The text was updated successfully, but these errors were encountered: