We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
There is a case when the http event comes back unparsed as a single string, this quick check (between for and const method) should alleviate:
serve.js - line: 43:
for (let httpEvent of funcConf.events) { if(typeof httpEvent === 'string'){ var split = httpEvent.split(' '); httpEvent = { path: split[1], method: split[0], } } const method = httpEvent.method.toLowerCase(); let endpoint = `/${httpEvent.path}`;
The text was updated successfully, but these errors were encountered:
I think you are referring to PR #45 which is still not merged. Please follow up on that PR to have updates on this issue
Sorry, something went wrong.
No branches or pull requests
There is a case when the http event comes back unparsed as a single string, this quick check (between for and const method) should alleviate:
serve.js - line: 43:
The text was updated successfully, but these errors were encountered: