chromium-dashboard/dispatch.yaml

25 строки
572 B
YAML

dispatch:
# These will never match, because /_ah/ requests are not routed by dispatch.yaml.
# https://cloud.google.com/appengine/docs/standard/python/reference/dispatch-yaml
# So, these two handlers must remain in the default service (app-py2).
# - url: "*/_ah/bounce"
# service: app-py2
# - url: "*/tasks/outbound-email"
# service: app-py2
- url: "*/tasks/detect-intent"
service: notifier
- url: "*/tasks/email-subscribers"
service: notifier
- url: "*/tasks/outbound-email"
service: default
- url: "*/py2"
service: default
- url: "*/*"
service: app-py3