Skip to content

Commit

Permalink
fix(biz/access_log/log_search):修复导出数据为空问题 (#1052)
Browse files Browse the repository at this point in the history
  • Loading branch information
F-cq authored Oct 23, 2024
1 parent 1919903 commit 9bd0339
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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,
)

Expand Down

0 comments on commit 9bd0339

Please sign in to comment.