ProcessCancelledException when debugging
Hi -
When debugging various extension points, such as a CompletionContributor, after 10 seconds any PSI operation that I execute in the debugger throws ProcessCanceledException. This is a bit annoying.
Is there a system property or something that I can set to make this effectively infinite?
cheers, jamie
Please sign in to leave a comment.
In general, no. But there's -Didea.ProcessCanceledException=disabled which you can add to your debug configuration, it can help in many cases. But note that it can also make the UI very unresponsive at times. I'd suggest to debug tests when possible, they don't have thisProcessCanceledException issue.
Thanks Peter, that works for me.