Align task execution tracking and thread interruption on shutdown

Closes gh-35254
This commit is contained in:
Juergen Hoeller
2025-08-01 21:15:25 +02:00
parent 24e66b63d1
commit 67e88f3c20
2 changed files with 2 additions and 2 deletions
@@ -376,7 +376,7 @@ public class SimpleAsyncTaskScheduler extends SimpleAsyncTaskExecutor implements
@Override
public boolean isRunning() {
return this.triggerLifecycle.isRunning();
return (this.triggerLifecycle.isRunning() || this.fixedDelayLifecycle.isRunning());
}
@Override