Skip to content

Commit

Permalink
Add retry logic for Firestore configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
henrybell committed Jul 17, 2023
1 parent 6f94435 commit 0444f46
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test_e2e_cf_pp.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -88,10 +88,10 @@ jobs:
run: |-
gcloud app create --region=us-central --project ${PROJECT_ID}
- name: 'Enable Firestore'
id: 'enable-firestore'
- name: 'Configure Firestore'
id: 'configure-firestore'
run: |-
gcloud firestore databases update --type=firestore-native --project ${PROJECT_ID}
for i in {1..10}; do gcloud firestore databases update --type=firestore-native --project ${PROJECT_ID} && break || sleep 10; done
- name: 'Run the E2E test'
id: 'run-e2e-test'
Expand Down

0 comments on commit 0444f46

Please sign in to comment.