PromucFlow_constructor/app/server/appsmith-plugins/redisPlugin/src
Sumit Kumar fc30554cb5
Fix: Redis plugin: extract cmd and args based on regex (#6648)
* Earlier split method was used to segregate cmd and args which failed when multiple words inside a quoted string formed one argument. e.g. set key "my value" would produce set, key, "my, value" as the tokens when split method is used, which is not correct. This change introduces a regex that would create the following tokens: set, key, "my value"
2021-08-17 13:41:41 +05:30
..
main Fix: Redis plugin: extract cmd and args based on regex (#6648) 2021-08-17 13:41:41 +05:30
test/java/com/external/plugins Fix: Redis plugin: extract cmd and args based on regex (#6648) 2021-08-17 13:41:41 +05:30