Remove extraneous return (#4089)

Remove extraneous `return` which was missed in https://github.com/linkerd/linkerd2/pull/4007

Signed-off-by: Alex Leong <alex@buoyant.io>
This commit is contained in:
Alex Leong 2020-02-20 16:12:49 -08:00 committed by GitHub
parent 8c12f03af8
commit c891b22632
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 1 deletions

View File

@ -177,7 +177,6 @@ func (pf *PortForward) Init() error {
go func() {
if err := pf.run(); err != nil {
failure <- err
return
}
}()