We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d5f4804 commit d8b6546Copy full SHA for d8b6546
cnm/plugin.go
@@ -6,6 +6,7 @@ package cnm
6
import (
7
"net/http"
8
"os"
9
+ "path"
10
11
"github.com/Azure/azure-container-networking/common"
12
"github.com/Azure/azure-container-networking/log"
@@ -43,7 +44,7 @@ func (plugin *Plugin) Initialize(config *common.PluginConfig) error {
43
44
// Create the listener.
45
var localAddr string
46
if plugin.Name != "test" {
- localAddr = config.Name + plugin.Name
47
+ localAddr = path.Join(pluginPath, config.Name+plugin.Name)
48
}
49
50
listener, err := common.NewListener("unix", localAddr)
0 commit comments