Without more information its hard to speculate. https://github.com/eclipse/jetty.project/blob/jetty-9.4.7.v20170914/jetty-server/src/main/java/org/eclipse/jetty/server/handler/ErrorHandler.java#L106
That says a error dispatch occurred where the ERROR_PAGE attribute was already set from a previous error dispatch, and it happened to be the same error page as you were previously dispatched to. Perhaps you have a page that causes and error that is handled by your error handler which itself triggers an error which loops? Or perhaps you have a custom error page handler that redirects to another error which eventually redirects to the original error page handler? Joakim Erdfelt / [email protected] On Thu, Sep 21, 2017 at 7:48 AM, Eric Y. Theriault <[email protected]> wrote: > Hi— > > > > > > > > I recently upgraded Jetty from 9.3.20.v20170531 to 9.4.7.v20170914 and > since this, I’m noticing “Error page loop [page to the 500 page]” in our > logs. I’ve not been able to reproduce this myself and it appears to be > happening from requests from possibly a spider. Any ideas on what may be > causing this and how to resolve it? > > > > Please let me know. Thanks and have a great day. > > > > > > > > eyt* > > > > _______________________________________________ > jetty-users mailing list > [email protected] > To change your delivery options, retrieve your password, or unsubscribe > from this list, visit > https://dev.eclipse.org/mailman/listinfo/jetty-users >
_______________________________________________ jetty-users mailing list [email protected] To change your delivery options, retrieve your password, or unsubscribe from this list, visit https://dev.eclipse.org/mailman/listinfo/jetty-users
