fix limit parameter for pod log fetches

This commit is contained in:
gmega 2024-02-09 16:08:25 -03:00
parent b8f8e256f0
commit 228c28468d
No known key found for this signature in database
GPG Key ID: FFD8DAF00660270F
2 changed files with 2 additions and 1 deletions

View File

@ -76,6 +76,7 @@ def get_logs(args, client: Elasticsearch):
colored_output=not args.no_color,
start_date=args.from_,
end_date=args.to,
limit=args.limit,
)
elif resource == ResourceType.runs:
run = ElasticSearchLogRepo(client=client).test_run(test_run_id=args.test_run_id).test_run

View File

@ -1,6 +1,6 @@
[tool.poetry]
name = "logtools"
version = "1.4.0"
version = "1.4.1"
description = ""
authors = ["gmega <giuliano@status.im>"]
readme = "README.md"