-
Notifications
You must be signed in to change notification settings - Fork 114
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I keep getting a 503 from my resource with custom handler #340
Comments
I was able to get past this error by doing this ...
However now I'm getting a general 500 error, I added a search and find since it was complaining about it and I'm attempting to use the search I am getting a generic 500 error, the detail just says I made sure to specify the search params and added them as a query param in postman Here is my search function
|
Can you show me the full code for your custom handler so I can test it locally? |
One of the issues you have with your |
I'm getting this output in postman
|
Try running the server with |
I see it's complaining about there not being an Is there a way I can specify a route handler through express and break out of these jsonapi requirements for just this one route since it's such a specific usage? I tried grabbing the express server and attaching a route handler after doing the
Maybe this isn't possible? |
I'm trying to make a custom handler that will handle my resource for making a PDF, but I keep getting a 503 in my response
I'm only implementing
POST
here because that's all I'll be usingRight now I'm just trying to get it working. Why am I getting this error? If I switch to using a real handler like the
mongodb
on it works, but just not with a custom handlerThe text was updated successfully, but these errors were encountered: