remove request.Context from shared channel service methods (#17606)

Этот коммит содержится в:
Ibrahim Serdar Acikgoz
2021-05-11 22:29:30 +03:00
коммит произвёл GitHub
родитель 4d018c2121
Коммит 35bfae9052
10 изменённых файлов: 46 добавлений и 58 удалений

Просмотреть файл

@@ -104,7 +104,7 @@ func remoteClusterAcceptMessage(c *Context, w http.ResponseWriter, r *http.Reque
auditRec.AddMeta("remoteCluster", rc)
// pass message to Remote Cluster Service and write response
resp := service.ReceiveIncomingMsg(c.AppContext, rc, frame.Msg)
resp := service.ReceiveIncomingMsg(rc, frame.Msg)
b, errMarshall := json.Marshal(resp)
if errMarshall != nil {