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 Apr 27, 2019. It is now read-only.
Hello,
I'm trying to implement a simple app to read values from consul.KV.
I've made an example app in F# using you library. Code is here: https://github.com/MortalFlesh/fsharp-consul
It works fine, when I'm using netcoreapp2.0.
Get value for "some/key" ...
Key: some/key | Value: "some value"
I have a private instance of consul, so I can't give you live example data..
But when I change netcoreapp2.0 to netcoreapp2.1 it does not work..
Get value for "some/key" ...
Key: some/key | Value: "<null-response>"
<null-response> is a fallback when client.KV.Get(key).Result.Response is null
I'm running the code on Mac OS High Sierra 10.13.6 with
dotnet --version
2.1.302
I have a problem with client.KV.List() as well, but I wanted to simplify this as much as possible.
Do you know what might be the problem? Am I doing something wrong?