mirror of
https://gitee.com/IrisVega/frp.git
synced 2024-11-01 22:31:29 +08:00
fix: incorrect op for newWorkConn (#3244)
(cherry picked from commit 53b6bbf0b14ab632dc89416d7fffa9b1d0887c0a)
This commit is contained in:
parent
804f2910fd
commit
b03f0ad1e6
@ -211,7 +211,7 @@ func (m *Manager) NewWorkConn(content *NewWorkConnContent) (*NewWorkConnContent,
|
|||||||
ctx = NewReqidContext(ctx, reqid)
|
ctx = NewReqidContext(ctx, reqid)
|
||||||
|
|
||||||
for _, p := range m.newWorkConnPlugins {
|
for _, p := range m.newWorkConnPlugins {
|
||||||
res, retContent, err = p.Handle(ctx, OpPing, *content)
|
res, retContent, err = p.Handle(ctx, OpNewWorkConn, *content)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
xl.Warn("send NewWorkConn request to plugin [%s] error: %v", p.Name(), err)
|
xl.Warn("send NewWorkConn request to plugin [%s] error: %v", p.Name(), err)
|
||||||
return nil, errors.New("send NewWorkConn request to plugin error")
|
return nil, errors.New("send NewWorkConn request to plugin error")
|
||||||
|
Loading…
Reference in New Issue
Block a user