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; } }