-
Notifications
You must be signed in to change notification settings - Fork 48
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
KV Value can be null
#24
Labels
Comments
Closed
Here are the few different kind of responses for this endpoint. Assuming the commands have been issues before: # Put null value
consul kv put test/other/path/value2
# Put non-null value
consul kv put test/other/path/value2 some-value Listing keysList keys on non-existing pathHTTP: 404
Listing keys on existing pathHTTP: 200
Getting values (simple)Getting non-existing valueHTTP 404
Getting valueHTTP 200
Get Value (Simple) Non existing keyHTTP: 404
Getting multiple valuesSame output as simple, but multiple values might bee returned:
Global Summary
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I believe I'm using the
consul:1.4.4
docker image, and listing a path returns anull
value. This is the response when I use curl:This causes the consul-rust library to fail on JSON deserialization.
The text was updated successfully, but these errors were encountered: