diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2021-11-10 21:06:29 +0000 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2021-11-10 21:06:29 +0000 |
commit | 284ad6f1f2021ec7af9105049902e93f5633c9c3 (patch) | |
tree | 3910ab791cbeb0b824a5adaa9eb42e8a2e675dee | |
parent | f2cc671ac5fa15c89a8a8f7410fdf0758bed9b4a (diff) | |
download | rspamd-284ad6f1f2021ec7af9105049902e93f5633c9c3.tar.gz rspamd-284ad6f1f2021ec7af9105049902e93f5633c9c3.zip |
[Minor] Bimi: Add version to the path
-rw-r--r-- | src/plugins/lua/bimi.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/lua/bimi.lua b/src/plugins/lua/bimi.lua index a2846c56e..a622aed5e 100644 --- a/src/plugins/lua/bimi.lua +++ b/src/plugins/lua/bimi.lua @@ -135,7 +135,7 @@ end local function make_helper_request(task, domain, record, redis_server) local is_sync = settings.helper_sync - local helper_url = string.format('%s/check', settings.helper_url) + local helper_url = string.format('%s/v1/check', settings.helper_url) local function http_helper_callback(http_err, code, body, _) if http_err then |