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 21, 2020. It is now read-only.
One issue that we found in writing our product using etcd3gw is that the methods don't return the metadata from the response "envelope". There are various cases where that information is needed:
To do watches correctly, you need the response revision, not the per-key revision. This is because the per-key revision may be pre-compaction and you can't watch on a compacted revision.
To do chunked gets (with limit=<n>) correctly, you need the "more" flag form the response and the response revision.
Perhaps you could switch to a dedicated Response object that exposes the KVs and other metadata?
The text was updated successfully, but these errors were encountered:
@fasaxc the main consumer of this library is tooz. as long as we don't break tooz, we should be fine with making changes. would you be able to help with the changes?
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
One issue that we found in writing our product using etcd3gw is that the methods don't return the metadata from the response "envelope". There are various cases where that information is needed:
limit=<n>
) correctly, you need the "more" flag form the response and the response revision.Perhaps you could switch to a dedicated
Response
object that exposes the KVs and other metadata?The text was updated successfully, but these errors were encountered: