From 05f5ade7f848a682787a293101a7f774eb3ca2ee Mon Sep 17 00:00:00 2001 From: Mr3h1v <15902242+Mr3h1v@users.noreply.github.com> Date: Fri, 22 Jul 2022 17:19:55 +0800 Subject: [PATCH] bugfix: fix error when pop multiple elements --- iredis/data/command_syntax.csv | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/iredis/data/command_syntax.csv b/iredis/data/command_syntax.csv index 528a6d46..fbaf47bb 100644 --- a/iredis/data/command_syntax.csv +++ b/iredis/data/command_syntax.csv @@ -104,14 +104,14 @@ list,LINDEX,command_key_position,render_bulk_string list,LINSERT,command_key_positionchoice_pivot_value,render_int list,LLEN,command_key,render_int list,LPOS,command_lpos,render_list_or_string -list,LPOP,command_key,render_bulk_string +list,LPOP,command_key,render_list_or_string list,LPUSH,command_key_values,render_int list,LPUSHX,command_key_values,render_int list,LRANGE,command_key_start_end,render_list list,LREM,command_key_position_value,render_int list,LSET,command_key_position_value,render_simple_string list,LTRIM,command_key_start_end,render_simple_string -list,RPOP,command_key,render_bulk_string +list,RPOP,command_key,render_list_or_string list,RPOPLPUSH,command_key_newkey,render_bulk_string list,RPUSH,command_key_values,render_int list,RPUSHX,command_key_value,render_int