This commit is contained in:
crusader 2018-03-27 19:47:39 +09:00
parent 2810e39817
commit 4a4a6a7efa

View File

@ -38,8 +38,9 @@ func (sh *GatewayRPCServletHandlers) Invoke(servletCTX rpc.ServletContext, reque
md := servletCTX.GetAttribute(oogw.GRPCMetadataKey)
if nil == md {
clientType := servletCTX.GetAttribute(oogw.ClientTypeKey).(oogw.ClientType)
md = metadata.Pairs(
oogw.GRPCClientTypeKey, servletCTX.GetAttribute(oogw.ClientTypeKey).(string),
oogw.GRPCClientTypeKey, clientType.String(),
oogw.GRPCSessionIDKey, servletCTX.GetAttribute(oogw.SocketIDKey).(string),
oogw.GRPCTargetIDKey, servletCTX.GetAttribute(oogw.TargetIDKey).(string))