[task-153] [fix]

This commit is contained in:
Christian Fraß 2025-07-01 17:34:38 +00:00
parent 3fa5d0820b
commit ab3bfad376

View file

@ -494,9 +494,12 @@ namespace _munin.conf
path : string
) : Promise<type_conf>
{
const conf_raw : {version : string; content : any} = await lib_plankton.conf.load(
schema(),
path
const conf_raw : {version : string; content : any} = await lib_plankton.conf.load_versioned(
path,
schema,
{
"v6": null,
}
);
if (conf_raw.version !== current_version)
{