Skip to content

Commit

Permalink
fix(go.d): correct sd dir (netdata#19155)
Browse files Browse the repository at this point in the history
  • Loading branch information
ilyam8 authored Dec 7, 2024
1 parent 05a136e commit 7c2579c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/go/cmd/godplugin/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ func (c *config) initServiceDiscoveryConfigDir() multipath.MultiPath {
var mpath multipath.MultiPath

for _, v := range c.pluginDir {
mpath = append(mpath, filepath.Join(v, "sd"))
mpath = append(mpath, filepath.Join(v, c.name, "sd"))
}

return mpath
Expand Down

0 comments on commit 7c2579c

Please sign in to comment.