commit 838f958: [Fix] Fix usage of the Redis config schema as `extra_fields`
Vsevolod Stakhov
vsevolod at rspamd.com
Sun Feb 5 12:35:03 UTC 2023
Author: Vsevolod Stakhov
Date: 2023-02-05 12:29:37 +0000
URL: https://github.com/rspamd/rspamd/commit/838f95817002d036462f469d40513ce9ae837536 (HEAD -> master)
[Fix] Fix usage of the Redis config schema as `extra_fields`
Issue: #4318
---
lualib/lua_redis.lua | 7 +++++++
1 file changed, 7 insertions(+)
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),
More information about the Commits
mailing list