Skip to content

Commit 46ac1c5

Browse files
Fix error building status JSON
FailedContext was missing some attributes required to report application status
1 parent 324857f commit 46ac1c5

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

java/org/apache/catalina/startup/FailedContext.java

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1432,4 +1432,15 @@ public boolean getSuspendWrappedResponseAfterForward() {
14321432
public void setSuspendWrappedResponseAfterForward(boolean suspendWrappedResponseAfterForward) {
14331433
}
14341434

1435+
public long getStartTime() {
1436+
return -1;
1437+
}
1438+
1439+
public long getStartupTime() {
1440+
return -1;
1441+
}
1442+
1443+
public long getTldScanTime() {
1444+
return -1;
1445+
}
14351446
}

0 commit comments

Comments
 (0)