-
Notifications
You must be signed in to change notification settings - Fork 77
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
[Refactor]: Remove request wrappers in xline-client #819
Labels
good first issue
Good for newcomers
Comments
👋 Thanks for opening this issue! Reply with the following command on its own line to get help or engage:
|
/assignme |
This issue is stale because it has been open 30 days with no activity. Remove stale label or comment or this will be closed in 14 days. |
/assignme |
This was referenced Jul 11, 2024
This issue is stale because it has been open 30 days with no activity. Remove stale label or comment or this will be closed in 14 days. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
We implement some request wrappers in the xline-client crate, like
Therefore, when we want to perform a lock operation by xline-client, we should write some code like this:
This way is not very user-friendly. I prefer to use
lock_client.lock("lock-test", 50)
rather thanlock_client.lock(LockRequest::new("lock-test").with_ttl(50))
.The text was updated successfully, but these errors were encountered: