This is an automated email from the ASF dual-hosted git repository.

markt-asf 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 5def6ce7c8 Jasper cannot operate without a valid work folder
5def6ce7c8 is described below

commit 5def6ce7c89b764b0e63ebbbcea6afb297aefffc
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 5014b3e211..4d18871332 100644
--- a/java/org/apache/jasper/EmbeddedServletOptions.java
+++ b/java/org/apache/jasper/EmbeddedServletOptions.java
@@ -625,7 +625,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]

Reply via email to