Increase timeout for PR previews (#2016)

I had a
[job](https://github.com/Qiskit/documentation/actions/runs/10999772330/job/30540690617?pr=2015)
fail even though the
[deployment](https://github.com/Qiskit/documentation/actions/runs/10999819575)
succeeded. The script just timed out a little early. This PR bumps the
timeout to 3mins, and increases the interval a bit to reduce the number
of requests we make.
This commit is contained in:
Frank Harkins 2024-09-23 20:22:57 +01:00 committed by GitHub
parent eb56a0f03b
commit 908583d848
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -24,8 +24,8 @@ from utils import configure_logging
logger = logging.getLogger(__name__)
INITIAL_DELAY_S = 20
TIMEOUT_S = 75
RETRY_INTERVAL_S = 5
TIMEOUT_S = 180
RETRY_INTERVAL_S = 10
def create_parser() -> ArgumentParser: