From: Ward Vandewege Date: Wed, 13 Apr 2022 13:17:42 +0000 (-0400) Subject: 18995: remove erroneous return statement. X-Git-Tag: 2.5.0~204^2~9 X-Git-Url: https://git.arvados.org/arvados.git/commitdiff_plain/3200837a113fda82014eae2acecd8e4ee23f528f 18995: remove erroneous return statement. Arvados-DCO-1.1-Signed-off-by: Ward Vandewege --- diff --git a/lib/boot/supervisor.go b/lib/boot/supervisor.go index 526411c41f..ff77fa0433 100644 --- a/lib/boot/supervisor.go +++ b/lib/boot/supervisor.go @@ -770,7 +770,6 @@ func (super *Supervisor) autofillConfig(cfg *arvados.Config) error { } func addrIsLocal(addr string) (bool, error) { - return true, nil listener, err := net.Listen("tcp", addr) if err == nil { listener.Close()