missing updates #5

Merged
mats merged 77 commits from refactor/http-proxy into main 2025-10-14 23:12:06 +02:00
2 changed files with 7 additions and 6 deletions
Showing only changes of commit a7a778caaf - Show all commits

View File

@@ -10,6 +10,7 @@ import (
messages "git.tornberg.me/go-cart-actor/pkg/messages"
"google.golang.org/grpc"
"google.golang.org/grpc/credentials/insecure"
)
// RemoteHost mirrors the lightweight controller used for remote node
@@ -27,8 +28,8 @@ type RemoteHost struct {
func NewRemoteHost(host string) (*RemoteHost, error) {
target := fmt.Sprintf("%s:1337", host)
var opts []grpc.DialOption
conn, err := grpc.NewClient(target, opts...)
conn, err := grpc.NewClient(target, grpc.WithTransportCredentials(insecure.NewCredentials()))
if err != nil {
log.Printf("AddRemote: dial %s failed: %v", target, err)