Error: Not Found: at Gaxios.request (node_modules/gaxios/src/gaxios.ts:86:15)
See original GitHub issue#Bug Report
Hello, This really weird issue happened, my configs to deploy to google cloud were working fine but then, I started getting the error below when I run serversless deploy
Error output
Serverless: Load command config
Serverless: Load command config:credentials
Serverless: Load command create
Serverless: Load command install
Serverless: Load command package
Serverless: Load command deploy
Serverless: Load command deploy:function
Serverless: Load command deploy:list
Serverless: Load command deploy:list:functions
Serverless: Load command invoke
Serverless: Load command invoke:local
Serverless: Load command info
Serverless: Load command logs
Serverless: Load command metrics
Serverless: Load command print
Serverless: Load command remove
Serverless: Load command rollback
Serverless: Load command rollback:function
Serverless: Load command slstats
Serverless: Load command plugin
Serverless: Load command plugin
Serverless: Load command plugin:install
Serverless: Load command plugin
Serverless: Load command plugin:uninstall
Serverless: Load command plugin
Serverless: Load command plugin:list
Serverless: Load command plugin
Serverless: Load command plugin:search
Serverless: Load command config
Serverless: Load command config:credentials
Serverless: Load command logs
Serverless: Load command login
Serverless: Load command logout
Serverless: Load command generate-event
Serverless: Load command test
Serverless: Load command dashboard
Serverless: Invoke deploy
Serverless: Invoke package
Serverless: Packaging service...
Serverless: Excluding development dependencies...
Serverless: Compiling function "first"...
Serverless: Uploading artifacts...
Error --------------------------------------------------
Error: Not Found
at Gaxios.request (node_modules/gaxios/src/gaxios.ts:86:15)
at process._tickCallback (internal/process/next_tick.js:68:7)
From previous event:
at PluginManager.invoke (node_modules/serverless/lib/classes/PluginManager.js:505:22)
at getHooks.reduce.then (node_modules/serverless/lib/classes/PluginManager.js:540:24)
From previous event:
at PluginManager.run (node_modules/serverless/lib/classes/PluginManager.js:540:8)
at variables.populateService.then (node_modules/serverless/lib/Serverless.js:115:33)
at runCallback (timers.js:705:18)
at tryOnImmediate (timers.js:676:5)
at processImmediate (timers.js:658:5)
at process.topLevelDomainCallback (domain.js:126:23)
From previous event:
at Serverless.run (node_modules/serverless/lib/Serverless.js:102:74)
at serverless.init.then (node_modules/serverless/bin/serverless.js:72:30)
at node_modules/graceful-fs/graceful-fs.js:111:16
at node_modules/serverless/node_modules/graceful-fs/graceful-fs.js:111:16
at node_modules/serverless-google-cloudfunctions/node_modules/graceful-fs/graceful-fs.js:57:14
at node_modules/serverless/node_modules/graceful-fs/graceful-fs.js:45:10
at FSReqWrap.args [as oncomplete] (fs.js:140:20)
From previous event:
at initializeErrorReporter.then (node_modules/serverless/bin/serverless.js:72:8)
at runCallback (timers.js:705:18)
at tryOnImmediate (timers.js:676:5)
at processImmediate (timers.js:658:5)
at process.topLevelDomainCallback (domain.js:126:23)
From previous event:
at Object.<anonymous> (node_modules/serverless/bin/serverless.js:57:4)
at Module._compile (internal/modules/cjs/loader.js:778:30)
at Object.Module._extensions..js (internal/modules/cjs/loader.js:789:10)
at Module.load (internal/modules/cjs/loader.js:653:32)
at tryModuleLoad (internal/modules/cjs/loader.js:593:12)
at Function.Module._load (internal/modules/cjs/loader.js:585:3)
at Function.Module.runMain (internal/modules/cjs/loader.js:831:12)
at startup (internal/bootstrap/node.js:283:19)
at bootstrapNodeJSCore (internal/bootstrap/node.js:622:3)
Your Environment Information ---------------------------
Operating System: darwin
Node Version: 10.16.3
Framework Version: 1.54.0
Plugin Version: 3.1.2
SDK Version: 2.1.2
Components Core Version: 1.1.1
Components CLI Version: 1.2.3
serverless.yml
service: my-service
provider:
name: google
stage: production
runtime: nodejs10
region: us-central1
project: [PROJECT_ID]
credentials: ~/.gcloud/keystore.json
plugins:
- serverless-google-cloudfunctions
package:
exclude:
- .git/**
- node_modules/**
- src/**
- coverage/**
- test/**
- .github/**
- .vscode/**
- .gitignore
- .editorconfig
- .env
- .env.example
- .eslintignore
- .eslintrc
- .gitignore
- .travis.yml
- README.md
- jest.config.js
- tsconfig.json
functions:
first:
handler: http
events:
- http: path
package.json
{
"engines": {
"node": ">=10.16.0"
},
"main": "dist/handler.js",
"dependencies": {
"acorn": "^7.1.0",
"async": "^3.1.0",
"bluebird": "^3.5.5",
"dotenv": "^8.1.0",
"errorhandler": "^1.5.1",
"express": "^4.17.1",
"firebase-admin": "^8.6.0",
"firebase-functions": "^3.3.0",
"lusca": "^1.6.1",
"request": "^2.88.0",
"request-promise": "^4.2.4",
"winston": "^3.2.1"
},
"devDependencies": {
"@types/async": "^3.0.2",
"@types/bluebird": "^3.5.27",
"@types/chai": "^4.2.3",
"@types/concurrently": "^4.1.0",
"@types/dotenv": "^6.1.1",
"@types/errorhandler": "^0.0.32",
"@types/eslint": "^6.1.1",
"@types/express": "^4.17.1",
"@types/jest": "^24.0.18",
"@types/lusca": "^1.6.1",
"@types/node": "^12.7.8",
"@types/request": "^2.48.3",
"@types/request-promise": "^4.1.44",
"@types/supertest": "^2.0.8",
"@types/winston": "^2.4.4",
"@typescript-eslint/eslint-plugin": "^2.3.1",
"@typescript-eslint/parser": "^2.3.1",
"chai": "^4.2.0",
"concurrently": "^4.1.2",
"eslint": "^6.4.0",
"jest": "^24.9.0",
"nodemon": "^1.19.2",
"supertest": "^4.0.2",
"ts-jest": "^24.1.0",
"ts-node": "^8.4.1",
"typescript": "^3.6.3",
"serverless": "^1.54.0",
"serverless-google-cloudfunctions": "^2.3.3"
}
}
Issue Analytics
- State:
- Created 4 years ago
- Reactions:2
- Comments:6 (2 by maintainers)
Top Results From Across the Web
Error: Not Found at Gaxios.<anonymous> when trying to get ...
The problem is because I try to listen to many subscribed email address by only one Cloud Function instance. It is solved by...
Read more >gaxios - npm
A simple common HTTP client specifically for Google APIs and services.. Latest version: 5.0.2, last published: 3 months ago.
Read more >Top 5 gaxios Code Examples - Snyk
To help you get started, we've selected a few gaxios examples, based on popular ways it is used in public projects. Secure your...
Read more >Google APIs Node.js Client - googleapis documentation
const {google} = require('googleapis'); // Each API may support multiple versions. ... If there's a sample you need missing, feel free to file...
Read more >Google Auth Library: Node.js Client
Visit https://github.com/JustinBeckwith/gaxios. ... throw new Error('The $CREDS environment variable was not found!');
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
More context, I found out this was do to serversless not creating the storage bucket and trying to upload the package. there should be a clearers error message but also very strange that it can’t create the bucket when it was able to before
I changed the name of
service: my-service
, and it seemed to be able to create a bucket and function fine.