Uploaded image for project: 'Wicket'
  1. Wicket
  2. WICKET-4135

retrying of exception handling

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Resolved
    • Trivial
    • Resolution: Fixed
    • 1.5.1
    • 1.5.2
    • wicket
    • None

    Description

      In the executeExceptionRequestHandler() method of RequestCycle, the code reads:

      IRequestHandler next = handleException(e);
      if (handler != null)

      { executeExceptionRequestHandler(next, retryCount - 1); return; }

      I suspect that it should be:

      IRequestHandler next = handleException(e);
      if (next != null) // should check "next" instead of "handler"
      { executeExceptionRequestHandler(next, retryCount - 1); return; }

      Attachments

        Activity

          People

            ivaynberg Igor Vaynberg
            freemant Kent Tong
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved:

              Time Tracking

                Estimated:
                Original Estimate - 5m
                5m
                Remaining:
                Remaining Estimate - 5m
                5m
                Logged:
                Time Spent - Not Specified
                Not Specified