aboutsummaryrefslogtreecommitdiffstats
path: root/lualib
diff options
context:
space:
mode:
Diffstat (limited to 'lualib')
-rw-r--r--lualib/lua_redis.lua7
1 files changed, 7 insertions, 0 deletions
diff --git a/lualib/lua_redis.lua b/lualib/lua_redis.lua
index acbb46969..d41805eca 100644
--- a/lualib/lua_redis.lua
+++ b/lualib/lua_redis.lua
@@ -39,6 +39,13 @@ local common_schema = ts.shape {
}
local config_schema =
+ -- Allow separate read/write servers to allow usage in the `extra_fields`
+ ts.shape({
+ read_servers = ts.string + ts.array_of(ts.string),
+ }, {extra_fields = common_schema}) +
+ ts.shape({
+ write_servers = ts.string + ts.array_of(ts.string),
+ }, {extra_fields = common_schema}) +
ts.shape({
read_servers = ts.string + ts.array_of(ts.string),
write_servers = ts.string + ts.array_of(ts.string),