-
-
Notifications
You must be signed in to change notification settings - Fork 4.8k
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
Error Code for Invalid Geojson #7331
Comments
Thanks for reporting! I agree that the server should not crash but provide a proper error message. The steps would be:
|
This issue has been classified as bug with severity S4 (small/trivial):
|
I have created a PR for the new error code |
The error code PR has been merged. The error code won't be available until a new Parse JS SDK will be released and the dependency in Parse Server is updated. But you can already expect the Parse Error and write tests for it, they will just fail for now. |
Thanks for opening this issue!
|
New Issue Checklist
Issue Description
Currently there is no error code that signifies an invalid geojson.
If the creation or the update of an object fails due to a column with a geospatial index (such as 2dsphere) containing invalid data, Parse throws a generic INTERNAL_SERVER_ERROR with no information as to exactly what went wrong.
Note that this corresponds to the Mongo error code 16755.
Steps to reproduce
Object
You can use the dashboard for both of these steps
db.geojson_test.createIndex({"geometry": "2dsphere"})
{ "geometry": {"foo":"bar"} }
One can also create an object with an empty geometry field and later attempt to update it to
{ "geometry": {"foo":"bar"}}
and get the same behaviour.Actual Outcome
Parse throws a generic INTERNAL_SERVER_ERROR with no information as to exactly what went wrong:
{ "code": 1, "message": "Internal server error." }
This makes it difficult to handle invalid geojsons programmatically.
Note that the original Mongo exception gets logged by Parse, but is programmatically inaccessible.
Expected Outcome
A helpful error message, like the one returned by Mongo:
MongoError: Can't extract geo keys: ... unknown GeoJSON type: { foo: "bar" }
Failing Test Case / Pull Request
Environment
Server
4.5.0
Ubuntu 18.04
local
Database
MongoDB
v4.4.4
local
Client
any
n/a
Logs
See above
The text was updated successfully, but these errors were encountered: