This is an automated email from the ASF dual-hosted git repository.
markt-asf pushed a commit to branch 10.1.x
in repository https://gitbox.apache.org/repos/asf/tomcat.git
The following commit(s) were added to refs/heads/10.1.x by this push:
new c99b1b6609 Jasper cannot operate without a valid work folder
c99b1b6609 is described below
commit c99b1b6609bac6b32fd4dea54388090136168a57
Author: Mark Thomas <[email protected]>
AuthorDate: Wed May 27 09:15:10 2026 +0100
Jasper cannot operate without a valid work folder
---
java/org/apache/jasper/EmbeddedServletOptions.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/java/org/apache/jasper/EmbeddedServletOptions.java
b/java/org/apache/jasper/EmbeddedServletOptions.java
index 18193811ba..9f7a21aa92 100644
--- a/java/org/apache/jasper/EmbeddedServletOptions.java
+++ b/java/org/apache/jasper/EmbeddedServletOptions.java
@@ -705,7 +705,7 @@ public final class EmbeddedServletOptions implements
Options {
}
if (!(scratchDir.exists() && scratchDir.canRead() &&
scratchDir.canWrite() && scratchDir.isDirectory())) {
- log.fatal(Localizer.getMessage("jsp.error.bad.scratch.dir",
scratchDir.getAbsolutePath()));
+ throw new
IllegalStateException(Localizer.getMessage("jsp.error.bad.scratch.dir",
scratchDir.getAbsolutePath()));
}
this.compiler = config.getInitParameter("compiler");
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]