Как настроить безсерверную функцию Google Cloud для повторения в случае сбоя? - PullRequest
0 голосов
/ 28 мая 2019

Как добавить атрибут retry как команду с использованием без сервера?

gcloud functions deploy FUNCTION_NAME --retry

Взгляните на мой serverless.yml файл:

service: myService

provider:
  name: google
  stage: prod
  runtime: nodejs8
  region: us-central1
  project: my-project
  credentials: my-credentials.json

plugins:
  - serverless-google-cloudfunctions

functions:
  first:
    handler: myFunction
    events:
      - event:
          eventType: providers/cloud.pubsub/eventTypes/topic.publish
          resource: my-topic-name

...