udp: remove unnecessary returns in switch stmt
This commit is contained in:
parent
093a748457
commit
c4706022d7
1 changed files with 2 additions and 6 deletions
|
@ -190,7 +190,6 @@ func (t *Frontend) handleRequest(r Request, w ResponseWriter) (actionName string
|
|||
}
|
||||
|
||||
WriteConnectionID(w, txID, NewConnectionID(r.IP, time.Now(), t.PrivateKey))
|
||||
return
|
||||
|
||||
case announceActionID:
|
||||
actionName = "announce"
|
||||
|
@ -213,8 +212,6 @@ func (t *Frontend) handleRequest(r Request, w ResponseWriter) (actionName string
|
|||
|
||||
go t.logic.AfterAnnounce(context.Background(), req, resp)
|
||||
|
||||
return
|
||||
|
||||
case scrapeActionID:
|
||||
actionName = "scrape"
|
||||
|
||||
|
@ -236,11 +233,10 @@ func (t *Frontend) handleRequest(r Request, w ResponseWriter) (actionName string
|
|||
|
||||
go t.logic.AfterScrape(context.Background(), req, resp)
|
||||
|
||||
return
|
||||
|
||||
default:
|
||||
err = errUnknownAction
|
||||
WriteError(w, txID, err)
|
||||
return
|
||||
}
|
||||
|
||||
return
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue