Skip to content

Commit

Permalink
Bump default SCREENSHOT_DELAY to 10s
Browse files Browse the repository at this point in the history
  • Loading branch information
GilbN committed May 4, 2024
1 parent 441424c commit 792527a
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 @@ -75,7 +75,7 @@ def __init__(self) -> None:
self.webpath: str = os.environ.get("WEB_PATH", "")
self.screenshot: bool = os.environ.get("WEB_SCREENSHOT", "false").lower() == "true"
self.screenshot_timeout: int = os.environ.get("WEB_SCREENSHOT_TIMEOUT", os.environ.get("WEB_SCREENSHOT_DELAY", "120"))
self.screenshot_delay: int = os.environ.get("SCREENSHOT_DELAY", "5")
self.screenshot_delay: int = os.environ.get("SCREENSHOT_DELAY", "10")
self.logs_timeout: int = os.environ.get("DOCKER_LOGS_TIMEOUT", os.environ.get("DOCKER_LOGS_DELAY","900"))
self.sbom_timeout: int = os.environ.get("SBOM_TIMEOUT", "900")
self.port: int = os.environ.get("PORT", "80")
Expand Down

0 comments on commit 792527a

Please sign in to comment.