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? 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
Arguments in the OSRM API are position depended. For example: /viaroute?loc=1,2&b=1&loc2,3 is not the same as /viaroute?loc=1,2&loc2,3&b=1.
/viaroute?loc=1,2&b=1&loc2,3
/viaroute?loc=1,2&loc2,3&b=1
However the API for post_form_uri takes a Hash of Arrays which will discard the original ordering. The offending line is here:
post_form_uri
Hash
Arrays
https://github.com/Project-OSRM/osrm-backend/pull/1804/files#diff-079dd5b69545a075b484ad4b63f902f5R26
/cc @freenerd
The text was updated successfully, but these errors were encountered:
This was fixed for the tests with #1838
Sorry, something went wrong.
No branches or pull requests
Arguments in the OSRM API are position depended. For example:
/viaroute?loc=1,2&b=1&loc2,3
is not the same as/viaroute?loc=1,2&loc2,3&b=1
.However the API for
post_form_uri
takes aHash
ofArrays
which will discard the original ordering. The offending line is here:https://github.com/Project-OSRM/osrm-backend/pull/1804/files#diff-079dd5b69545a075b484ad4b63f902f5R26
/cc @freenerd
The text was updated successfully, but these errors were encountered: