diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2016-05-23 16:08:12 +0100 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2016-05-23 16:08:12 +0100 |
commit | 7657cc4be6d681b05f13042176283376c2a0d601 (patch) | |
tree | cb0e27f45f8fc57cfb08cc6f61b64862b0a759b5 /src | |
parent | 7b5cad09895a0c67326e6cac90a1dcef6b7b9521 (diff) | |
download | rspamd-7657cc4be6d681b05f13042176283376c2a0d601.tar.gz rspamd-7657cc4be6d681b05f13042176283376c2a0d601.zip |
[Fix] Include slave cluster name into http request
Diffstat (limited to 'src')
-rw-r--r-- | src/fuzzy_storage.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fuzzy_storage.c b/src/fuzzy_storage.c index 2f7ba0696..b233fccd6 100644 --- a/src/fuzzy_storage.c +++ b/src/fuzzy_storage.c @@ -358,7 +358,7 @@ rspamd_fuzzy_send_update_mirror (struct rspamd_fuzzy_storage_ctx *ctx, } msg = rspamd_http_new_message (HTTP_REQUEST); - rspamd_printf_fstring (&msg->url, "/update_v1"); + rspamd_printf_fstring (&msg->url, "/update_v1/%s", m->name); conn->http_conn = rspamd_http_connection_new ( NULL, |