diff --git a/logtools/cli/es_logs.py b/logtools/cli/es_logs.py index 3debd28..86cd594 100644 --- a/logtools/cli/es_logs.py +++ b/logtools/cli/es_logs.py @@ -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 diff --git a/pyproject.toml b/pyproject.toml index c4a4a97..f0f4c63 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "logtools" -version = "1.4.0" +version = "1.4.1" description = "" authors = ["gmega "] readme = "README.md"