From 74eb72f59d700f9cf11d21fd6ed2aca05207339b Mon Sep 17 00:00:00 2001 From: Dmitriy Zayakin Date: Thu, 23 Nov 2023 14:20:38 +0300 Subject: [PATCH] [#129] Change local timeout Signed-off-by: Dmitriy Zayakin --- pyproject.toml | 4 ++-- src/frostfs_testlib/s3/aws_cli_client.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 3178bbe..ba38c03 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -50,10 +50,10 @@ basic = "frostfs_testlib.healthcheck.basic_healthcheck:BasicHealthcheck" [tool.isort] profile = "black" src_paths = ["src", "tests"] -line_length = 100 +line_length = 120 [tool.black] -line-length = 100 +line-length = 120 target-version = ["py310"] [tool.bumpver] diff --git a/src/frostfs_testlib/s3/aws_cli_client.py b/src/frostfs_testlib/s3/aws_cli_client.py index 320d74b..59ee740 100644 --- a/src/frostfs_testlib/s3/aws_cli_client.py +++ b/src/frostfs_testlib/s3/aws_cli_client.py @@ -17,7 +17,7 @@ from frostfs_testlib.utils.cli_utils import _configure_aws_cli reporter = get_reporter() logger = logging.getLogger("NeoLogger") -command_options = CommandOptions(timeout=240) +command_options = CommandOptions(timeout=480) class AwsCliClient(S3ClientWrapper):