You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Aug 6, 2019. It is now read-only.
When collecting the query parameters, we are using TreeMap<String, String> which therefore only allows for one of any key. We need to be using TreeMap<String, TreeSet>
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Issue: GET https://mock.vokal.io/v1/foo?bar=wing&bar=ding
Result: Missing File: GET|-v1-foo?bar=ding
When collecting the query parameters, we are using TreeMap<String, String> which therefore only allows for one of any key. We need to be using TreeMap<String, TreeSet>
The text was updated successfully, but these errors were encountered: