serverless-azure-functions icon indicating copy to clipboard operation
serverless-azure-functions copied to clipboard

Serverless function keeps being rebuilt indefinitely (Host configuration has changed. Signaling restart)

Open reflash opened this issue 5 years ago • 0 comments

This is a Bug Report

Description

  • What went wrong? Function keeps triggering restart [27/09/2020 00:38:31] File change of type 'Changed' detected for '<...>/graphql/function.json'
    [27/09/2020 00:38:31] Host configuration has changed. Signaling restart Seems that my build changes some files in node_modules which triggers rebuild indefinitely. I was trying to add .funcignore to ignore those changes, but with no success
  • What did you expect should have happened? Changes to be built once
  • What was the config you used?
service: name

provider:
  name: azure
  location: Germany West Central
  runtime: nodejs12

plugins:
  - serverless-azure-functions

package:
  exclude:
    - .funcignore

functions:
  graphql:
    handler: dist/endpoint
    events:
      - http: true
        x-azure-settings:
          name: req
      - http: true
        x-azure-settings:
          name: $return
          direction: out
  • What stacktrace or error message from your provider did you see?

Similar or dependent issues:

Additional Data

  • Serverless Framework Version you're using: 2.1.1
  • Serverless CLI Version you're using:
  • Serverless Azure Plugin Version you're using: 2.0.13
  • Operating System: OS X Catalina
  • Stack Trace:
  • Provider Error messages:

reflash avatar Sep 27 '20 00:09 reflash