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
use xgroup delconsumer command to delete a consumer for redis stream, the result returns pending messages count.
but invoke LettuceStreamCommands xGroupDelConsumer, return BooleanOutput object, the BooleanOutput set output function:
Bug Report
Current Behavior
use xgroup delconsumer command to delete a consumer for redis stream, the result returns pending messages count.
but invoke LettuceStreamCommands xGroupDelConsumer, return BooleanOutput object, the BooleanOutput set output function:
public void set(long integer) {
output = (integer == 1) ? Boolean.TRUE : Boolean.FALSE;
}
so, if the pending messages is more than one, this BooleanOutput set Boolean.FALSE! but it is actually success.
Environment
The text was updated successfully, but these errors were encountered: