Skip to content

Commit

Permalink
Update demisto_sdk/commands/common/docker_helper.py
Browse files Browse the repository at this point in the history
Co-authored-by: Koby Meir <[email protected]>
  • Loading branch information
mmhw and kobymeir authored Feb 25, 2025
1 parent 0ceded5 commit 048e2ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion demisto_sdk/commands/common/docker_helper.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
)

TEST_REQUIREMENTS_DIR = Path(__file__).parent.parent / "lint" / "resources"
DOCKER_CONTAINER_TIMEOUT = 300
DOCKER_CONTAINER_TIMEOUT = int(os.getenv("DOCKER_CONTAINER_TIMEOUT")) or 300


class DockerException(Exception):
Expand Down

0 comments on commit 048e2ed

Please sign in to comment.