Remove unused code (#1991)
Remove unused code in DefaultBlockExceptionHandler#handle
This commit is contained in:
parent
fe59485fa9
commit
a1eed7032f
|
|
@ -34,12 +34,6 @@ public class DefaultBlockExceptionHandler implements BlockExceptionHandler {
|
||||||
// Return 429 (Too Many Requests) by default.
|
// Return 429 (Too Many Requests) by default.
|
||||||
response.setStatus(429);
|
response.setStatus(429);
|
||||||
|
|
||||||
StringBuffer url = request.getRequestURL();
|
|
||||||
|
|
||||||
if ("GET".equals(request.getMethod()) && StringUtil.isNotBlank(request.getQueryString())) {
|
|
||||||
url.append("?").append(request.getQueryString());
|
|
||||||
}
|
|
||||||
|
|
||||||
PrintWriter out = response.getWriter();
|
PrintWriter out = response.getWriter();
|
||||||
out.print("Blocked by Sentinel (flow limiting)");
|
out.print("Blocked by Sentinel (flow limiting)");
|
||||||
out.flush();
|
out.flush();
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue