Commit c03f4c22 by fudahua

未在绑定范围判断

parent f00a7aaa
......@@ -106,7 +106,7 @@ public class WebInterceptor extends HandlerInterceptorAdapter {
Long acquire = instance.acquire(requestURI, wxEnterpriseId);
logger.info("限流返回值:{},{}",requestURI,acquire);
if (acquire.equals(0)) {
if (acquire==0L) {
this.errorResult(httpServletResponse, HaoBanErrCode.ERR_13);
logger.info("限流!");
return false;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment