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 was archived by the owner on Jul 27, 2023. It is now read-only.
Consul allows to organize keyValues in folders, which then become part of the URL path.
In the example kv url below, resources/ is a kv folder and
my.keyis an actual keyValue pair.http://consul.example.com/v1/kv/resources/my.key
Unfortunately
KeyValueClient.getValue()urlencodes a key with folder prefix such as resources/my.key and requests/v1/kv/resources%2fmy.key
which fails with 404.
The same problem occurs with
KeyValueClient.getValues()for a path of folders, as ingetValues("resources/subfolder").