diff --git a/pkg/daemon/client.go b/pkg/daemon/client.go index be167746..7a48bd4c 100644 --- a/pkg/daemon/client.go +++ b/pkg/daemon/client.go @@ -37,7 +37,7 @@ func GetClient(isSudo bool) (cli rpc.DaemonClient, err error) { } ctx := context.Background() - conn, err := grpc.NewClient("unix:"+sockPath, grpc.WithTransportCredentials(insecure.NewCredentials())) + conn, err := grpc.NewClient("unix:"+sockPath, grpc.WithTransportCredentials(insecure.NewCredentials()), grpc.WithNoProxy()) if err != nil { return nil, err }