diff options
author | Florin Coras <fcoras@cisco.com> | 2022-04-06 15:10:13 -0700 |
---|---|---|
committer | Dave Barach <openvpp@barachs.net> | 2022-04-07 16:11:06 +0000 |
commit | 1cbcdcef20b7950e91d63ecf61c9bb1586e1e0b2 (patch) | |
tree | 189d663a40c6db6d3049f6ad0d95e433623af3e7 /src/plugins/http | |
parent | e0c0280d9bc53921897902f8adb845cf13e4641f (diff) |
tls http: run config fns after init ones
Type: fix
Signed-off-by: Florin Coras <fcoras@cisco.com>
Change-Id: Ia4d8aaafeb3629f421601edffefe9c61c3e69dba
Diffstat (limited to 'src/plugins/http')
-rw-r--r-- | src/plugins/http/http.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/http/http.c b/src/plugins/http/http.c index f40715f055d..279a46a7fc6 100644 --- a/src/plugins/http/http.c +++ b/src/plugins/http/http.c @@ -1064,7 +1064,7 @@ http_config_fn (vlib_main_t *vm, unformat_input_t *input) return 0; } -VLIB_EARLY_CONFIG_FUNCTION (http_config_fn, "http"); +VLIB_CONFIG_FUNCTION (http_config_fn, "http"); VLIB_PLUGIN_REGISTER () = { .version = VPP_BUILD_VER, |