You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I open the source actions menu, it creates three textDocument/codeAction requests. When I select "Organize Imports", it tries to resolve the second request through codeAction/resolve, but the JDTLS throws an error saying that it cannot find the request id.
My machine only has 2 processor cores, so ForkJoinPool.commonPool().getParallelism() returns 1, and only storing one CodeActionProposal isn't enough in many situations.
Can we make codeActionStore's max size configurable? Or set the size to Math.max(ForkJoinPool.commonPool().getParallelism(), 8)?
The text was updated successfully, but these errors were encountered:
@testforstephen I'm assuming the request cache was tied to the common pool's parallelism because it's assumed that's how many code action requests could run in parallel ? It doesn't look like this holds.
When I open the source actions menu, it creates three
textDocument/codeAction
requests. When I select "Organize Imports", it tries to resolve the second request throughcodeAction/resolve
, but the JDTLS throws an error saying that it cannot find the request id.I think the issue is here:
eclipse.jdt.ls/org.eclipse.jdt.ls.core/src/org/eclipse/jdt/ls/core/internal/handlers/CodeActionHandler.java
Lines 80 to 81 in bb26c98
My machine only has 2 processor cores, so
ForkJoinPool.commonPool().getParallelism()
returns1
, and only storing one CodeActionProposal isn't enough in many situations.Can we make codeActionStore's max size configurable? Or set the size to
Math.max(ForkJoinPool.commonPool().getParallelism(), 8)
?The text was updated successfully, but these errors were encountered: