Skip to content

Commit

Permalink
Merge pull request #42 from linuxserver/bugfix/sbom-timeout
Browse files Browse the repository at this point in the history
Fixes default sbom timeout value typo.
  • Loading branch information
GilbN authored Jun 6, 2024
2 parents 20a3f65 + b3a38b2 commit b160501
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ci/ci.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ def __init__(self) -> None:
self.screenshot_timeout: int = (os.environ.get("WEB_SCREENSHOT_TIMEOUT", "120") or "120")
self.screenshot_delay: int = (os.environ.get("WEB_SCREENSHOT_DELAY", "10") or "10")
self.logs_timeout: int = (os.environ.get("DOCKER_LOGS_TIMEOUT", "120") or "120")
self.sbom_timeout: int = (os.environ.get("SBOM_TIMEOUT", "120") or "120")
self.sbom_timeout: int = (os.environ.get("SBOM_TIMEOUT", "900") or "900")
self.port: int = (os.environ.get("PORT", "80") or "80")

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

0 comments on commit b160501

Please sign in to comment.