Fix unexpected whitespace of the command catalogs in several Redis plugins. (#480)

This commit is contained in:
SWHHEART 2023-03-23 20:46:04 +08:00 committed by GitHub
parent d357bdef7a
commit e91514c634
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 34 additions and 33 deletions

View File

@ -21,6 +21,7 @@ Release Notes.
* Fix tomcat-10x-plugin and add test case to support tomcat7.x-8.x-9.x.
* Fix thrift plugin generate duplicate traceid when `sendBase` error occurs
* Support keep trace profiling when cross-thread.
* Fix unexpected whitespace of the command catalogs in several Redis plugins.
#### Documentation
* Update docs of Tracing APIs, reorganize the API docs into six parts.

View File

@ -51,22 +51,22 @@ public class JedisPluginConfig {
"getset",
"set",
"setbit",
"setex ",
"setnx ",
"setex",
"setnx",
"setrange",
"strlen ",
"strlen",
"mset",
"msetnx ",
"msetnx",
"psetex",
"incr ",
"incrby ",
"incr",
"incrby",
"incrbyfloat",
"decr ",
"decrby ",
"append ",
"decr",
"decrby",
"append",
"hmset",
"hset",
"hsetnx ",
"hsetnx",
"hincrby",
"hincrbyfloat",
"hdel",
@ -118,7 +118,7 @@ public class JedisPluginConfig {
*/
public static Set<String> OPERATION_MAPPING_READ = new HashSet<>(Arrays.asList(
"getrange",
"getbit ",
"getbit",
"mget",
"hvals",
"hkeys",

View File

@ -52,22 +52,22 @@ public class JedisPluginConfig {
"getset",
"set",
"setbit",
"setex ",
"setnx ",
"setex",
"setnx",
"setrange",
"strlen ",
"strlen",
"mset",
"msetnx ",
"msetnx",
"psetex",
"incr ",
"incrby ",
"incr",
"incrby",
"incrbyfloat",
"decr ",
"decrby ",
"append ",
"decr",
"decrby",
"append",
"hmset",
"hset",
"hsetnx ",
"hsetnx",
"hincrby",
"hincrbyfloat",
"hdel",
@ -119,7 +119,7 @@ public class JedisPluginConfig {
*/
public static Set<String> OPERATION_MAPPING_READ = new HashSet<>(Arrays.asList("get",
"getrange",
"getbit ",
"getbit",
"mget",
"hvals",
"hkeys",

View File

@ -52,22 +52,22 @@ public class LettucePluginConfig {
"getset",
"set",
"setbit",
"setex ",
"setnx ",
"setex",
"setnx",
"setrange",
"strlen ",
"strlen",
"mset",
"msetnx ",
"msetnx",
"psetex",
"incr ",
"incrby ",
"incr",
"incrby",
"incrbyfloat",
"decr ",
"decrby ",
"append ",
"decr",
"decrby",
"append",
"hmset",
"hset",
"hsetnx ",
"hsetnx",
"hincrby",
"hincrbyfloat",
"hdel",
@ -119,7 +119,7 @@ public class LettucePluginConfig {
*/
public static Set<String> OPERATION_MAPPING_READ = new HashSet<>(Arrays.asList(
"getrange",
"getbit ",
"getbit",
"mget",
"hvals",
"hkeys",