Skip to content

Commit 6ed3d28

Browse files
committed
fix: remove obsolete --stale flag from Cloud Run sync job args
1 parent 61f35d3 commit 6ed3d28

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

infra/gcp/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ gcloud run deploy devpulse \
9090
gcloud run jobs create devpulse-sync \
9191
--image us-docker.pkg.dev/${PROJECT_ID}/devpulse-remote/mchmarny/devpulse:latest \
9292
--command /ko-app/devpulse \
93-
--args "sync,--config,https://raw.githubusercontent.com/mchmarny/devpulse/main/config/<config-name>.yaml,--stale,3d" \
93+
--args "sync,--config,https://raw.githubusercontent.com/mchmarny/devpulse/main/config/<config-name>.yaml" \
9494
--service-account $SERVICE_ACCOUNT \
9595
--set-secrets DEVPULSE_DB=devpulse-db:latest,GITHUB_TOKEN=devpulse-github-token:latest,ANTHROPIC_API_KEY=anthropic-api-key:latest \
9696
--set-env-vars DEVPULSE_DEBUG=true,DEVPULSE_LOG_JSON=true,ANTHROPIC_MODEL=claude-haiku-4-5-20251001 \

infra/gcp/scripts/update-run.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ echo "Updating devpulse-sync job..."
1919
gcloud run jobs update devpulse-sync \
2020
--project="${PROJECT_ID}" \
2121
--region="${REGION}" \
22-
--args "sync,--config,https://raw.githubusercontent.com/mchmarny/devpulse/main/config/nvidia.yaml,--stale,3d" \
22+
--args "sync,--config,https://raw.githubusercontent.com/mchmarny/devpulse/main/config/nvidia.yaml" \
2323
--set-env-vars DEVPULSE_DEBUG=true,DEVPULSE_LOG_JSON=true
2424

2525
echo "Done. Both resources updated."

0 commit comments

Comments
 (0)