From 9bd0339bfd01124e4f20c8e09f2fef570a6e3bd5 Mon Sep 17 00:00:00 2001 From: F-cq <42882578+F-cq@users.noreply.github.com> Date: Wed, 23 Oct 2024 16:31:52 +0800 Subject: [PATCH] =?UTF-8?q?fix(biz/access=5Flog/log=5Fsearch)=EF=BC=9A?= =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E5=AF=BC=E5=87=BA=E6=95=B0=E6=8D=AE=E4=B8=BA?= =?UTF-8?q?=E7=A9=BA=E9=97=AE=E9=A2=98=20(#1052)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../apigateway/apigateway/apis/web/access_log/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dashboard/apigateway/apigateway/apis/web/access_log/views.py b/src/dashboard/apigateway/apigateway/apis/web/access_log/views.py index c3d50a522..33db40bc6 100644 --- a/src/dashboard/apigateway/apigateway/apis/web/access_log/views.py +++ b/src/dashboard/apigateway/apigateway/apis/web/access_log/views.py @@ -172,7 +172,7 @@ def get(self, request, *args, **kwargs): time_range=data.get("time_range"), ) total_count, logs = client.search_logs( - offset=data.get("offset", 0), + offset=0, limit=limit, )