From 25364ba279bcac72a363748c5e65964864b94358 Mon Sep 17 00:00:00 2001 From: "Kali Kaneko (leap communications)" Date: Tue, 11 Dec 2018 21:49:07 +0100 Subject: [bug] correct error message coming from copypasta --- standalone/bonafide.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/standalone/bonafide.go b/standalone/bonafide.go index db9ef7e..e37c332 100644 --- a/standalone/bonafide.go +++ b/standalone/bonafide.go @@ -185,7 +185,7 @@ func (b *bonafide) fetchEipJSON() error { } defer resp.Body.Close() if resp.StatusCode != 200 { - return fmt.Errorf("get vpn cert has failed with status: %s", resp.Status) + return fmt.Errorf("get eip json has failed with status: %s", resp.Status) } var eip eipService -- cgit v1.2.3