Plugins: Remove pkg/infra/fs, pkg/infra/tracing and pkg/infra/process dependencies from pkg/plugins (#115798)

* remove dependency on packages

* update tests

* trigger
This commit is contained in:
Will Browne
2026-01-05 11:12:31 +00:00
committed by GitHub
parent 4e3039e4bd
commit 70b1053ad1
33 changed files with 131 additions and 134 deletions
+2 -2
View File
@@ -300,11 +300,11 @@ func (proxy *DataSourceProxy) validateRequest() error {
}
// route match
r1, err := util.CleanRelativePath(proxy.proxyPath)
r1, err := plugins.CleanRelativePath(proxy.proxyPath)
if err != nil {
return err
}
r2, err := util.CleanRelativePath(route.Path)
r2, err := plugins.CleanRelativePath(route.Path)
if err != nil {
return err
}