client: Fix formatting in lbclient.go

This commit is contained in:
Hector Sanjuan 2023-08-10 21:08:22 +02:00
parent 828342bdc8
commit 7c923c32e2

View File

@ -556,11 +556,11 @@ func (lc *loadBalancingClient) IPFS(ctx context.Context) *shell.Shell {
return s
}
func (lc *loadBalancingClient) Health(ctx context.Context) (error) {
func (lc *loadBalancingClient) Health(ctx context.Context) error {
call := func(c Client) error {
err := c.Health(ctx)
return err
}
err := lc.retry(0, call)
return err
}
}