Browse Source

[Fix] Do not load errored hyperscan database

tags/2.7
Vsevolod Stakhov 3 years ago
parent
commit
797a8e37b9
1 changed files with 7 additions and 0 deletions
  1. 7
    0
      src/hs_helper.c

+ 7
- 0
src/hs_helper.c View File

@@ -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;

Loading…
Cancel
Save