JetBrains/intellij-community · error · EvaluateException
Some action is already running
Error message
Some action is already running
What it means
Error "Some action is already running" thrown in JetBrains/intellij-community.
Source
Thrown at java/debugger/impl/src/com/intellij/debugger/memory/agent/MemoryAgentImpl.java:68
private MemoryAgentImpl() {
String tempDir = FileUtil.getTempDirectory() + "/";
int version = new Random().nextInt();
myProxy = new IdeaNativeAgentProxyMirror(
tempDir + "memoryAgentCancellationFile" + version,
tempDir + "memoryAgentProgressFile" + version + ".json"
);
myCapabilities = MemoryAgentCapabilities.DISABLED;
myState = MemoryAgentActionState.FINISHED;
myProgressTracker = MemoryAgentProgressTracker.DISABLED;
}
private @NotNull MemoryAgentCapabilities initializeCapabilities(@NotNull EvaluationContextImpl evaluationContext) throws EvaluateException {
return myProxy.initializeCapabilities(evaluationContext);
}
private <T> MemoryAgentActionResult<T> executeOperation(Callable<MemoryAgentActionResult<T>> callable) throws EvaluateException {
if (myState == MemoryAgentActionState.RUNNING) {
throw new EvaluateException("Some action is already running");
}
if (myCancellationFile != null) {
FileUtil.delete(myCancellationFile);
myCancellationFile = null;
}
if (myProgressIndicator != null) {
myProgressTracker = new MemoryAgentProgressTrackerImpl(this, myProgressIndicator);
}
else {
myProgressTracker = MemoryAgentProgressTracker.DISABLED;
}
try {
myState = MemoryAgentActionState.RUNNING;
myProgressTracker.startMonitoringProgress();
return callable.call();View on GitHub (pinned to be881553f2)
Solutions
- Wait for the running memory-agent action to finish before starting another one.
- Cancel the in-progress action if it is stuck, then retry.
Example fix
Let the current 'Calculate retained size' (or similar) action complete, then run the next memory analysis action.
When it happens
Trigger: A memory agent operation is requested while a previous one is still executing.
Common situations: Repeatedly triggering memory analysis (e.g. object size calculation) in the debugger before the previous run finished.
AI-assisted analysis of JetBrains/intellij-community@be881553f2 (2026-08-14).
Data as JSON: /api/errors/4b3d171c5f48537d.
Report an issue: GitHub.