CASC-116
removed secondary call to response.encodeRedirectUrl because according to the Tomcat source code they essentially do the same thing.
This commit is contained in:
parent
b1f6e24f7e
commit
649b39b1c8
|
|
@ -176,7 +176,7 @@ public abstract class AbstractTicketValidationFilter extends AbstractCasFilter {
|
|||
|
||||
if (this.redirectAfterValidation) {
|
||||
log. debug("Redirecting after successful ticket validation.");
|
||||
response.sendRedirect(response.encodeRedirectURL(constructServiceUrl(request, response)));
|
||||
response.sendRedirect(constructServiceUrl(request, response));
|
||||
return;
|
||||
}
|
||||
} catch (final TicketValidationException e) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue