mirror of
https://github.com/openimsdk/open-im-server.git
synced 2026-04-30 07:19:20 +08:00
297f3c16a8
# Conflicts: # pkg/common/db/mysql_model/im_mysql_model/group_model_k.go
19 lines
511 B
Go
19 lines
511 B
Go
package utils
|
|
|
|
import (
|
|
"Open_IM/pkg/common/config"
|
|
"github.com/OpenIMSDK/getcdv3"
|
|
"github.com/OpenIMSDK/open_utils/constant"
|
|
"google.golang.org/grpc"
|
|
"strings"
|
|
)
|
|
|
|
func GetConn(operationID, serviceName string) (*grpc.ClientConn, error) {
|
|
conn := getcdv3.GetConn(config.Config.Etcd.EtcdSchema, strings.Join(config.Config.Etcd.EtcdAddr, ","),
|
|
serviceName, operationID, config.Config.Etcd.UserName, config.Config.Etcd.Password)
|
|
if conn == nil {
|
|
return nil, constant.ErrGetRpcConn
|
|
}
|
|
return conn, nil
|
|
}
|