Explorar el Código

udpate

master
DengBiao hace 2 años
padre
commit
c46b96d455
Se han modificado 1 ficheros con 3 adiciones y 3 borrados
  1. +3
    -3
      pkg/rpc/rpc.go

+ 3
- 3
pkg/rpc/rpc.go Ver fichero

@@ -40,7 +40,7 @@ func GetBusinessIntClient() pb.BusinessIntClient {
}

func initLogicIntClient() {
conn, err := grpc.DialContext(context.TODO(), k8s.GetK8STarget("default", "logic", "8000"), grpc.WithInsecure(),
conn, err := grpc.DialContext(context.TODO(), k8s.GetK8STarget("gim", "logic", "8000"), grpc.WithInsecure(),
grpc.WithDefaultServiceConfig(fmt.Sprintf(`{"LoadBalancingPolicy": "%s"}`, roundrobin.Name)))
if err != nil {
panic(err)
@@ -49,7 +49,7 @@ func initLogicIntClient() {
}

func initConnectIntClient() {
conn, err := grpc.DialContext(context.TODO(), k8s.GetK8STarget("default", "connect", "8000"), grpc.WithInsecure(),
conn, err := grpc.DialContext(context.TODO(), k8s.GetK8STarget("gim", "connect", "8000"), grpc.WithInsecure(),
grpc.WithDefaultServiceConfig(fmt.Sprintf(`{"LoadBalancingPolicy": "%s"}`, picker.AddrPickerName)))
if err != nil {
panic(err)
@@ -58,7 +58,7 @@ func initConnectIntClient() {
}

func initBusinessIntClient() {
conn, err := grpc.DialContext(context.TODO(), k8s.GetK8STarget("default", "business", "8000"), grpc.WithInsecure(),
conn, err := grpc.DialContext(context.TODO(), k8s.GetK8STarget("gim", "business", "8000"), grpc.WithInsecure(),
grpc.WithDefaultServiceConfig(fmt.Sprintf(`{"LoadBalancingPolicy": "%s"}`, roundrobin.Name)))
if err != nil {
panic(err)


Cargando…
Cancelar
Guardar