10000 Add additional arguments for XADD from Redis 6.2.0 missed by #1894 by cjavad · Pull Request #2393 · phpredis/phpredis · GitHub
[go: up one dir, main page]

Skip to content

Add additional arguments for XADD from Redis 6.2.0 missed by #1894 #2393

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

Open
wants to merge 4 commits into
base: develop
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Remove TODO
  • Loading branch information
cjavad committed Sep 24, 2023
commit f542d3910aa997ca4a4bc33d21d8221fed3d23d7
3 changes: 0 additions & 3 deletions redis_commands.c
Original file line number Diff line number Diff line change
Expand Up @@ -5306,9 +5306,6 @@ int redis_xadd_cmd(INTERNAL_FUNCTION_PARAMETERS, RedisSock *redis_sock,
redis_cmd_append_sstr_zval(&cmdstr, value, redis_sock);
} ZEND_HASH_FOREACH_END();

// TODO remove this
printf("%s\n", cmdstr.c);

*cmd = cmdstr.c;
*cmd_len = cmdstr.len;
return SUCCESS;
Expand Down
0