Skip to content

Commit

Permalink
fix: add a missing npipe for windows (#119)
Browse files Browse the repository at this point in the history
  • Loading branch information
VihasMakwana authored Jul 18, 2024
1 parent 136cff6 commit 165e47a
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion pkg/client/mock/npipe_windows.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,11 @@

package mock

import "net"
import (
"net"

"github.com/elastic/elastic-agent-libs/api/npipe"
)

func newNPipeListener(name, sd string) (net.Listener, error) {
return npipe.NewListener(name, sd)
Expand Down

0 comments on commit 165e47a

Please sign in to comment.