Commit bcf5c937 by Marcus Efraimsson Committed by GitHub

Plugins: Require backend plugins to be signed when using plugin path (#24244)

parent b3ccae9c
......@@ -174,7 +174,7 @@ func (pm *PluginManager) checkPluginPaths() error {
continue
}
if err := pm.scan(path, false); err != nil {
if err := pm.scan(path, true); err != nil {
return errutil.Wrapf(err, "failed to scan directory configured for plugin '%s': '%s'", pluginID, path)
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment