A retry always works.
The error is from this code:
|
let path = "/api/v2/" + event.queryStringParameters.endpoint + "/"; |
|
|
|
if (!path) { |
|
callback(null, {statusCode: 400, body: "path must not be empty"}); |
|
return; |
|
} |
Looks like sometimes the endpoint name isn't being passed to the function. May be another Netlify bug.
A retry always works.
The error is from this code:
api-data/functions/resource-list.js
Lines 78 to 83 in 2e21d03
Looks like sometimes the endpoint name isn't being passed to the function. May be another Netlify bug.