浏览代码

[Fix] Do not load errored hyperscan database

tags/2.7
Vsevolod Stakhov 3 年前
父节点
当前提交
797a8e37b9
共有 1 个文件被更改,包括 7 次插入0 次删除
  1. 7
    0
      src/hs_helper.c

+ 7
- 0
src/hs_helper.c 查看文件

@@ -214,6 +214,13 @@ rspamd_rs_compile_cb (guint ncompiled, GError *err, void *cbd)

ctx = (struct hs_helper_ctx *)worker->ctx;

if (err != NULL) {
/* Failed to compile: log and go out */
msg_err ("cannot compile Hyperscan database: %e", err);

return;
}

if (ncompiled > 0) {
/* Enforce update for other workers */
hack_global_forced = TRUE;

正在加载...
取消
保存