Bump ephemeral limit up to 15 minutes per table

Refs #1915
This commit is contained in:
Simon Willison 2022-12-01 15:44:43 -08:00 committed by GitHub
commit e2f71c6f81
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -59,7 +59,11 @@ jobs:
cp fixtures.db fixtures2.db cp fixtures.db fixtures2.db
- name: Make some modifications to metadata.json - name: Make some modifications to metadata.json
run: | run: |
cat fixtures.json | jq '.databases |= . + {"ephemeral": {"allow": {"id": "root"}}}'> metadata.json cat fixtures.json | \
jq '.databases |= . + {"ephemeral": {"allow": {"id": "root"}}}' | \
jq '.plugins |= . + {"datasette-ephemeral-tables": {"table_ttl": 900}}' \
> metadata.json
cat metadata.json
- name: Set up Cloud Run - name: Set up Cloud Run
uses: google-github-actions/setup-gcloud@v0 uses: google-github-actions/setup-gcloud@v0
with: with: