xxyy
2025-03-07 a610ca9e97f456a7e87cb407bf6e353672472ec5
Code Management/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/Filter/ThrottleFilter.cs
@@ -19,7 +19,7 @@
            var elapsedTime = DateTime.Now - lastExecutionTime;
            if (elapsedTime.TotalSeconds < _intervalInSeconds)
            {
                context.Result = new Microsoft.AspNetCore.Mvc.StatusCodeResult(429);
                context.Result = new OkObjectResult(new WebResponseContent().Error("请求过于频繁,请稍后再试"));
                return;
            }
        }