-
Notifications
You must be signed in to change notification settings - Fork 3.9k
Remove deprecated methods (blpop, brpop, pexpire) #902
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
Remove deprecated methods (blpop, brpop, pexpire) #902
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This guys weren't marked as @Deprecated but I believe there is no problem to delete it since JedisCommands marked it as @Deprecated. 👍
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oh, that's right. Thanks for finding!
Btw, we can do the trick, adding @deprecated to methods and apply it to 2.7.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I agree with that. Do you want me to do it or you gonna do by yourself?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oh, that would be nice. Could you do it if you don't mind?
Thanks in advance!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sure. Doing it.
Jungtaek Lim notifications@github.com escreveu no dia ter, 3/03/2015 às
11:23:
In src/main/java/redis/clients/jedis/JedisCluster.java
#902 (comment):@@ -1089,26 +1089,6 @@ public Long execute(Jedis connection) {
}
- public List blpop(final String arg) {
Oh, that would be nice. Could you do it if you don't mind?
Thanks in advance!—
Reply to this email directly or view it on GitHub
https://github.com/xetorthio/jedis/pull/902/files#r25690235.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Resolved by #903
|
Just added a note but it looks good to me. 👍 |
|
We should apply this to (Binary)JedisCluster when #671 will be merged into mater. |
|
@HeartSaVioR can you please rebase so it can be merged? Thx!. |
Conflicts: src/main/java/redis/clients/jedis/BinaryJedis.java src/main/java/redis/clients/jedis/BinaryShardedJedis.java src/main/java/redis/clients/jedis/JedisCluster.java
|
@marcosnils Sure! Here it is. :) |
Remove deprecated methods (blpop, brpop, pexpire)
Removed all deprecated methods in master branch.