-
Notifications
You must be signed in to change notification settings - Fork 115
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.put is now JSON encoding the given data #187
Comments
This seems to be related to the following changes 35c369f#diff-7730494772290edba80a3e678479ae31L111 Which now leverage |
Thank you for the report, we will revert to old behavior asap |
tionebsalocin
added a commit
to tionebsalocin/diplomat
that referenced
this issue
Mar 19, 2019
As every data was converted to json, raw data usage was impossible Reverting all json conversion to source function and remove systematic conversion. Fixes: WeAreFarmGeek#187
pierresouchay
pushed a commit
that referenced
this issue
Mar 19, 2019
As every data was converted to json, raw data usage was impossible Reverting all json conversion to source function and remove systematic conversion. Fixes: #187
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Version
With diplomat (2.1.1)
Step to reproduce
When doing
KV.put('my_key', '{ "a": 1}')
Expected result
I expect to save my given value as it in the kv store, i.e.:
{ "a": 1 }
Actual result
Instead I got
"{ \"a\": 1}"
The text was updated successfully, but these errors were encountered: