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
2024-09-05 20:38:10,595 [172591363] INFO - #c.i.e.r.ExecutionUtil - Error running 'Bazel test ExprVariantEnforceLengthTest.smallLength (ExprVariantEnforceLengthTest.cpp)':<br>Access is allowed from Event Dispatch Thread (EDT) only; see https://jb.gg/ij-platform-threading for details
Current thread: Thread[#2573,DefaultDispatcher-worker-7,6,main] 929198670 (EventQueue.isDispatchThread()=false)
SystemEventQueueThread: Thread[#46,AWT-EventQueue-0,6,main] 620482553
com.intellij.openapi.diagnostic.RuntimeExceptionWithAttachments: Access is allowed from Event Dispatch Thread (EDT) only; see https://jb.gg/ij-platform-threading for details
Current thread: Thread[#2573,DefaultDispatcher-worker-7,6,main] 929198670 (EventQueue.isDispatchThread()=false)
Which category does this issue belong to?
No response
What's the simplest, easiest way to reproduce this bug? Please provide a minimal example if possible.
No response
Which Intellij IDE are you using? Please provide the specific version.
CLion 2024.2
What programming languages and tools are you using? Please provide specific versions.
No response
What Bazel plugin version are you using?
No response
Have you found anything relevant by searching the web?
No response
Any other information, logs, or outputs that you want to share?
No response
The text was updated successfully, but these errors were encountered:
after 2024.2 CLion invokes createProcess on a background
thread, so UI access is no longer allowed in this context.
fix is backward compatible as we're allowed to use
invokeAndWait on EDT as well.
fixesbazelbuild#6740
after 2024.2 CLion invokes createProcess on a background
thread, so UI access is no longer allowed in this context.
fix is backward compatible as we're allowed to use
invokeAndWait on EDT as well.
fixesbazelbuild#6740
* clion: fix UI call on non-UI thread
after 2024.2 CLion invokes createProcess on a background
thread, so UI access is no longer allowed in this context.
fix is backward compatible as we're allowed to use
invokeAndWait on EDT as well.
fixes#6740
* clion: add missing ReadActions to GoogleTest support
since the code was moved from the UI thread to the
background,the read action context is no longer available.
anyway in CLion 2024.3 this will be broken since ijplatform
will not be providing implicit read action context on EDT.
(cherry picked from commit c616753)
Description of the bug:
Which category does this issue belong to?
No response
What's the simplest, easiest way to reproduce this bug? Please provide a minimal example if possible.
No response
Which Intellij IDE are you using? Please provide the specific version.
CLion 2024.2
What programming languages and tools are you using? Please provide specific versions.
No response
What Bazel plugin version are you using?
No response
Have you found anything relevant by searching the web?
No response
Any other information, logs, or outputs that you want to share?
No response
The text was updated successfully, but these errors were encountered: