Skip to content

Commit b3a38b2

Browse files
committed
Fixes default sbom timeout value typo.
1 parent 20a3f65 commit b3a38b2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ci/ci.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ def __init__(self) -> None:
7979
self.screenshot_timeout: int = (os.environ.get("WEB_SCREENSHOT_TIMEOUT", "120") or "120")
8080
self.screenshot_delay: int = (os.environ.get("WEB_SCREENSHOT_DELAY", "10") or "10")
8181
self.logs_timeout: int = (os.environ.get("DOCKER_LOGS_TIMEOUT", "120") or "120")
82-
self.sbom_timeout: int = (os.environ.get("SBOM_TIMEOUT", "120") or "120")
82+
self.sbom_timeout: int = (os.environ.get("SBOM_TIMEOUT", "900") or "900")
8383
self.port: int = (os.environ.get("PORT", "80") or "80")
8484

8585
self.ssl: str = os.environ.get("SSL", "false")

0 commit comments

Comments
 (0)