diff options
Diffstat (limited to 'src/vcl/vcl_cfg.c')
-rw-r--r-- | src/vcl/vcl_cfg.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/vcl/vcl_cfg.c b/src/vcl/vcl_cfg.c index a94c874532f..f7e271bbdc9 100644 --- a/src/vcl/vcl_cfg.c +++ b/src/vcl/vcl_cfg.c @@ -498,10 +498,11 @@ vppcom_cfg_read_file (char *conf_fname) VCFG_DBG (0, "VCL<%d>: configured tls-engine %u (0x%x)", getpid (), vcl_cfg->tls_engine, vcl_cfg->tls_engine); } - else if (unformat (line_input, "multi-thread")) + else if (unformat (line_input, "multi-thread-workers")) { - vcl_cfg->mt_supported = 1; - VCFG_DBG (0, "VCL<%d>: configured with multithread", getpid ()); + vcl_cfg->mt_wrk_supported = 1; + VCFG_DBG (0, "VCL<%d>: configured with multithread workers", + getpid ()); } else if (unformat (line_input, "}")) { |