Firebase cloud function exits with code 16 what is error code 16 and where can I find more info?

前端 未结 4 421
悲哀的现实
悲哀的现实 2020-12-17 09:27

one of my cloud functions on firebase exits with code 16 as an error.

I tried to google and find out what that code is but no luck at all.

Error: P         


        
相关标签:
4条回答
  • 2020-12-17 09:47

    Had the same issue. As @cDitch mentions my code was not 100% complete. However the biggest issue for me were outdated packages.

    I needed to upgrade firebase-admin, firebase-functions and firebase-tools as well as eslint.

    you can see which packages are outdated by running:

    npm outdated
    

    Then i've changed the dependencies manually inside the package.json to the latest version mentioned by npm outdated.

    It's possible that it'll cause deploy issues after you do this. At least this is what happened to me. Completely removing the node_modules and reinstalling them fixed this.

    Here's two lines i've added to my package.json scripts to do this on windows:

    "clean": "rmdir /s /q node_modules",
    "reinstall": "npm run clean && npm install",
    
    • rmdir -> delete a directory
    • /s -> delete the whole tree (so all folder within)
    • /q -> do this quietly so you dont flood your terminal and have to wait all printed lines.

    now you can run the following command

    npm run clean
    npm install
    

    or

    npm run reinstall
    

    to execute those steps.

    0 讨论(0)
  • 2020-12-17 09:57

    Apparently and after investigation, the error means something like: Headers already sent.

    I had somewhere in my code a response.send() with headers and then, later on, I was sending another response.

    Would be great if the Firebase team could elaborate with these issues and provide some documentation instead of leaving us blindfolded (to my understanding)

    0 讨论(0)
  • 2020-12-17 09:59

    An improperly terminated cloud function is the likely cause.

    Here's what the firebase docs say:

    • Resolve functions that perform asynchronous processing (also known as "background functions") by returning a JavaScript promise.

    • Terminate HTTP functions with res.redirect(), res.send(), or res.end().

    • Terminate a synchronous function with a return; statement.

    In short, watch out for floating promises and/or multiple calls to res or response.

    I've also seen the Process exited with code 16 occur in tandem with:

    Error: Could not load the default credentials. Browse to https://cloud.google.com/docs/authentication/getting-started for more information.
        at GoogleAuth.getApplicationDefaultAsync (/srv/functions/node_modules/google-auth-library/build/src/auth/googleauth.js:161:19)
        at process._tickCallback (internal/process/next_tick.js:68:7)
    
    0 讨论(0)
  • 2020-12-17 10:05

    The code for the function framework is actually public in the GoogleCloudPlatform/functions-framework-nodejs repository (although not advertised anywhere).

    In particular you can see there the cases where killInstance is used, which is the one triggering exit code 16:

    const killInstance = process.exit.bind(process, 16);

    These cases are (at the time of writing):

    • uncaughtException
    • unhandledRejection
    0 讨论(0)
提交回复
热议问题