This is an automated email from the ASF dual-hosted git repository.
rmaucher pushed a commit to branch 9.0.x
in repository https://gitbox.apache.org/repos/asf/tomcat.git
The following commit(s) were added to refs/heads/9.0.x by this push:
new 51e53cbb8f Use the proper key
51e53cbb8f is described below
commit 51e53cbb8f8ef0be30c5fdc47a12909d62379265
Author: remm <[email protected]>
AuthorDate: Thu May 21 11:33:37 2026 +0200
Use the proper key
---
.../catalina/core/StandardVirtualThreadExecutor.java | 18 +++++++++---------
1 file changed, 9 insertions(+), 9 deletions(-)
diff --git a/java/org/apache/catalina/core/StandardVirtualThreadExecutor.java
b/java/org/apache/catalina/core/StandardVirtualThreadExecutor.java
index b63ba0dfed..ea7fc79038 100644
--- a/java/org/apache/catalina/core/StandardVirtualThreadExecutor.java
+++ b/java/org/apache/catalina/core/StandardVirtualThreadExecutor.java
@@ -148,7 +148,7 @@ public class StandardVirtualThreadExecutor extends
LifecycleMBeanBase implements
if (executor != null) {
return executor.isShutdown();
} else {
- throw new
IllegalStateException(sm.getString("standardThreadExecutor.notStarted"));
+ throw new
IllegalStateException(sm.getString("standardVirtualThreadExecutor.notStarted"));
}
}
@@ -158,7 +158,7 @@ public class StandardVirtualThreadExecutor extends
LifecycleMBeanBase implements
if (executor != null) {
return executor.isTerminated();
} else {
- throw new
IllegalStateException(sm.getString("standardThreadExecutor.notStarted"));
+ throw new
IllegalStateException(sm.getString("standardVirtualThreadExecutor.notStarted"));
}
}
@@ -174,7 +174,7 @@ public class StandardVirtualThreadExecutor extends
LifecycleMBeanBase implements
if (executor != null) {
return executor.submit(task);
} else {
- throw new
IllegalStateException(sm.getString("standardThreadExecutor.notStarted"));
+ throw new
IllegalStateException(sm.getString("standardVirtualThreadExecutor.notStarted"));
}
}
@@ -184,7 +184,7 @@ public class StandardVirtualThreadExecutor extends
LifecycleMBeanBase implements
if (executor != null) {
return executor.submit(task, result);
} else {
- throw new
IllegalStateException(sm.getString("standardThreadExecutor.notStarted"));
+ throw new
IllegalStateException(sm.getString("standardVirtualThreadExecutor.notStarted"));
}
}
@@ -194,7 +194,7 @@ public class StandardVirtualThreadExecutor extends
LifecycleMBeanBase implements
if (executor != null) {
return executor.submit(task);
} else {
- throw new
IllegalStateException(sm.getString("standardThreadExecutor.notStarted"));
+ throw new
IllegalStateException(sm.getString("standardVirtualThreadExecutor.notStarted"));
}
}
@@ -204,7 +204,7 @@ public class StandardVirtualThreadExecutor extends
LifecycleMBeanBase implements
if (executor != null) {
return executor.invokeAll(tasks);
} else {
- throw new
IllegalStateException(sm.getString("standardThreadExecutor.notStarted"));
+ throw new
IllegalStateException(sm.getString("standardVirtualThreadExecutor.notStarted"));
}
}
@@ -215,7 +215,7 @@ public class StandardVirtualThreadExecutor extends
LifecycleMBeanBase implements
if (executor != null) {
return executor.invokeAll(tasks, timeout, unit);
} else {
- throw new
IllegalStateException(sm.getString("standardThreadExecutor.notStarted"));
+ throw new
IllegalStateException(sm.getString("standardVirtualThreadExecutor.notStarted"));
}
}
@@ -225,7 +225,7 @@ public class StandardVirtualThreadExecutor extends
LifecycleMBeanBase implements
if (executor != null) {
return executor.invokeAny(tasks);
} else {
- throw new
IllegalStateException(sm.getString("standardThreadExecutor.notStarted"));
+ throw new
IllegalStateException(sm.getString("standardVirtualThreadExecutor.notStarted"));
}
}
@@ -236,7 +236,7 @@ public class StandardVirtualThreadExecutor extends
LifecycleMBeanBase implements
if (executor != null) {
return executor.invokeAny(tasks, timeout, unit);
} else {
- throw new
IllegalStateException(sm.getString("standardThreadExecutor.notStarted"));
+ throw new
IllegalStateException(sm.getString("standardVirtualThreadExecutor.notStarted"));
}
}
}
\ No newline at end of file
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]