From 911b8f91b196ecf02a248efc4c3d24e52a86a752 Mon Sep 17 00:00:00 2001 From: fengzero Date: Thu, 6 Aug 2026 09:20:47 +0000 Subject: [PATCH] filter license server --- src/core/plugin_manager.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/core/plugin_manager.c b/src/core/plugin_manager.c index 778819cfa..7e2eb1a06 100644 --- a/src/core/plugin_manager.c +++ b/src/core/plugin_manager.c @@ -284,6 +284,10 @@ UT_array *neu_plugin_manager_get(neu_plugin_manager_t *mgr) utarray_new(plugins, &icd); HASH_ITER(hh, mgr->plugins, el, tmp) { + if (strcmp(el->name, "neuron-license-server") == 0) { + continue; + } + neu_resp_plugin_info_t info = { .kind = el->kind, .type = el->type,