From 838f95817002d036462f469d40513ce9ae837536 Mon Sep 17 00:00:00 2001 From: Vsevolod Stakhov Date: Sun, 5 Feb 2023 12:29:37 +0000 Subject: [Fix] Fix usage of the Redis config schema as `extra_fields` Issue: #4318 --- lualib/lua_redis.lua | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'lualib') 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), -- cgit v1.2.3