On Mon, Nov 17, 2025 at 4:13 PM Mark Thomas <[email protected]> wrote: > > This issue had already been fixed. > > https://github.com/apache/tomcat/commit/3dca097687e935e57d28e9b915f8d8a4b3d3c0a5 > > It has been discussed on the dev list and had been approved for back-port.
Maybe it's simpler though. I agree with adding the status name of the webapp. Rémy > Mark > > > On 17/11/2025 14:23, [email protected] wrote: > > This is an automated email from the ASF dual-hosted git repository. > > > > schultz pushed a commit to branch main > > in repository https://gitbox.apache.org/repos/asf/tomcat.git > > > > > > The following commit(s) were added to refs/heads/main by this push: > > new 46ac1c5a47 Fix error building status JSON > > 46ac1c5a47 is described below > > > > commit 46ac1c5a4788a414ccf1a8db1fb20ad808d46357 > > Author: Christopher Schultz <[email protected]> > > AuthorDate: Mon Nov 17 09:22:21 2025 -0500 > > > > Fix error building status JSON > > > > FailedContext was missing some attributes required to report > > application status > > --- > > java/org/apache/catalina/startup/FailedContext.java | 11 +++++++++++ > > 1 file changed, 11 insertions(+) > > > > diff --git a/java/org/apache/catalina/startup/FailedContext.java > > b/java/org/apache/catalina/startup/FailedContext.java > > index 199b0ffe30..af66450b98 100644 > > --- a/java/org/apache/catalina/startup/FailedContext.java > > +++ b/java/org/apache/catalina/startup/FailedContext.java > > @@ -1432,4 +1432,15 @@ public class FailedContext extends > > LifecycleMBeanBase implements Context { > > public void setSuspendWrappedResponseAfterForward(boolean > > suspendWrappedResponseAfterForward) { > > } > > > > + public long getStartTime() { > > + return -1; > > + } > > + > > + public long getStartupTime() { > > + return -1; > > + } > > + > > + public long getTldScanTime() { > > + return -1; > > + } > > } > > \ No newline at end of file > > > > > > --------------------------------------------------------------------- > > To unsubscribe, e-mail: [email protected] > > For additional commands, e-mail: [email protected] > > > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [email protected] > For additional commands, e-mail: [email protected] > --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
