1
0
Fork 0
mirror of https://github.com/dragonflydb/dragonfly.git synced 2024-12-14 11:58:02 +00:00

fix(server): support cancel status for blmove

Signed-off-by: adi_holden <adi@dragonflydb.io>
This commit is contained in:
adi_holden 2024-02-06 14:50:17 +02:00
parent eab8e56a47
commit fea8dd71e1

View file

@ -827,6 +827,7 @@ void BLMove(CmdArgList args, ConnectionContext* cntx) {
switch (op_res.status()) {
case OpStatus::TIMED_OUT:
case OpStatus::CANCELLED:
return rb->SendNull();
break;