Skip to content

Commit

Permalink
Fix interlink to plugin socket dial (#317)
Browse files Browse the repository at this point in the history
  • Loading branch information
dciangot authored Oct 29, 2024
2 parents 97dcfff + 88051c4 commit 036ffbf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/interlink/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ func main() {
sidecarEndpoint := ""
switch {
case strings.HasPrefix(interLinkConfig.Sidecarurl, "unix://"):
sidecarEndpoint = interLinkConfig.Sidecarurl
sidecarEndpoint := strings.ReplaceAll(interLinkConfig.Sidecarurl, "unix://", "")
// Dial the Unix socket
var conn net.Conn
for {
Expand Down

0 comments on commit 036ffbf

Please sign in to comment.