mirror of
http://github.com/valkey-io/valkey
synced 2024-11-22 09:17:20 +00:00
Fix outdated comment about flags in moduleCreateArgvFromUserFormat (#10781)
Clearly more than one flag exists, also fixed some typos. Fixes #10776
This commit is contained in:
parent
f28e2ce7a4
commit
6f7c1a8ce6
@ -325,7 +325,7 @@ static void libraryLink(functionsLibCtx *lib_ctx, functionLibInfo* li) {
|
||||
/* Takes all libraries from lib_ctx_src and add to lib_ctx_dst.
|
||||
* On collision, if 'replace' argument is true, replace the existing library with the new one.
|
||||
* Otherwise abort and leave 'lib_ctx_dst' and 'lib_ctx_src' untouched.
|
||||
* Return C_OK on success and C_ERR if aborted. If C_ERR is retunred, set a relevant
|
||||
* Return C_OK on success and C_ERR if aborted. If C_ERR is returned, set a relevant
|
||||
* error message on the 'err' out parameter.
|
||||
* */
|
||||
static int libraryJoin(functionsLibCtx *functions_lib_ctx_dst, functionsLibCtx *functions_lib_ctx_src, int replace, sds *err) {
|
||||
|
@ -5549,7 +5549,7 @@ RedisModuleString *RM_CreateStringFromCallReply(RedisModuleCallReply *reply) {
|
||||
* items and *argvlenp with the length of the allocated argv.
|
||||
*
|
||||
* The integer pointed by 'flags' is populated with flags according
|
||||
* to special modifiers in "fmt". For now only one exists:
|
||||
* to special modifiers in "fmt".
|
||||
*
|
||||
* "!" -> REDISMODULE_ARGV_REPLICATE
|
||||
* "A" -> REDISMODULE_ARGV_NO_AOF
|
||||
|
@ -38,7 +38,7 @@ The following compatibility and capability tags are currently used:
|
||||
| `external:skip` | Not compatible with external servers. |
|
||||
| `cluster:skip` | Not compatible with `--cluster-mode`. |
|
||||
| `large-memory` | Test that requires more than 100mb |
|
||||
| `tls:skip` | Not campatible with `--tls`. |
|
||||
| `tls:skip` | Not compatible with `--tls`. |
|
||||
| `needs:repl` | Uses replication and needs to be able to `SYNC` from server. |
|
||||
| `needs:debug` | Uses the `DEBUG` command or other debugging focused commands (like `OBJECT`). |
|
||||
| `needs:pfdebug` | Uses the `PFDEBUG` command. |
|
||||
|
@ -369,7 +369,7 @@ start_server {tags {"tracking network"}} {
|
||||
$r CLIENT TRACKING OFF
|
||||
}
|
||||
|
||||
test {hdel deliver invlidate message after response in the same connection} {
|
||||
test {hdel deliver invalidate message after response in the same connection} {
|
||||
r CLIENT TRACKING off
|
||||
r HELLO 3
|
||||
r CLIENT TRACKING on
|
||||
|
Loading…
Reference in New Issue
Block a user