mirror of
https://github.com/mozilla/fxa.git
synced 2025-12-28 07:03:55 +00:00
Because: - we want to simplify email cloud task scheduling and rate limiting by using one Google cloud task queue per email notification type This commit: - uses one cloud task queue per email type - renames numerous things to make it clear that these queues and tasks are for inactive deletion emails only - updates route handler and InactiveAccountManager
7 lines
430 B
Bash
7 lines
430 B
Bash
#!/bin/bash -ex
|
|
|
|
docker run --rm \
|
|
--name cloud-tasks-emulator \
|
|
-p 8123:8123 \
|
|
ghcr.io/aertje/cloud-tasks-emulator:latest -host "0.0.0.0" -port "8123" -queue "projects/test/locations/test/queues/delete-accounts-queue" -queue "projects/test/locations/test/queues/inactive-first-email" -queue "projects/test/locations/test/queues/inactive-second-email" -queue "projects/test/locations/test/queues/inactive-third-email"
|