* Do not let 404 errors increase app.errorCount, even if

no notfound action is defined.
This commit is contained in:
hns 2007-11-14 16:44:27 +00:00
parent e29a8aee38
commit ad68ca97b3

View file

@ -580,7 +580,9 @@ public final class RequestEvaluator implements Runnable {
// check if we tried to process the error already,
// or if this is an XML-RPC request
if (error == null) {
app.errorCount += 1;
if (!(x instanceof FrameworkException)) {
app.errorCount += 1;
}
// set done to false so that the error will be processed
done = false;