On Mon, Nov 17, 2025 at 6:59 PM Christopher Schultz <[email protected]> wrote: > > Mark, > > On 11/17/25 10:12 AM, Mark Thomas 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. > > Oh, sorry about that. I only see the conversation here: > https://lists.apache.org/thread/vml0v4q5spz1dj5x278dhxkgsw1zmq3f > > Shall I revert?
No, it makes things more robust (JMX is more consistent). Rémy > -chris > > > 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] > --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
