Skip to content

Increases timeout for Redshift integration test cluster start and stop #1300

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 9, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/periodic-integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ jobs:
aqueduct install redshift

- name: Setup Hosted Data Integrations
timeout-minutes: 20
timeout-minutes: 25
working-directory: scripts/data
run: python3 setup_hosted.py --aws-key-id ${{ secrets.SAURAV_AWS_ACCESS_KEY_ID }} --aws-secret-key ${{ secrets.SAURAV_AWS_SECRET_ACCESS_KEY }}

Expand All @@ -231,7 +231,7 @@ jobs:
prefix: Data Connectors

- name: Teardown Hosted Data Integrations
timeout-minutes: 20
timeout-minutes: 25
if: always()
working-directory: scripts/data
run: python3 teardown_hosted.py --aws-key-id ${{ secrets.SAURAV_AWS_ACCESS_KEY_ID }} --aws-secret-key ${{ secrets.SAURAV_AWS_SECRET_ACCESS_KEY }}
Expand Down
2 changes: 1 addition & 1 deletion scripts/data/redshift_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ def _get_cluster_status(client, cluster_identifier):
return cluster["ClusterStatus"]


def _wait_for_status(client, desired_status, timeout=600):
def _wait_for_status(client, desired_status, timeout=900):
"""
Waits for the test cluster to reach the desired status. Errors if the timeout
is reached.
Expand Down