diff options
author | Kali Kaneko (leap communications) <kali@leap.se> | 2018-12-11 21:49:07 +0100 |
---|---|---|
committer | Kali Kaneko (leap communications) <kali@leap.se> | 2018-12-13 15:02:36 +0100 |
commit | 25364ba279bcac72a363748c5e65964864b94358 (patch) | |
tree | 425426f91fe5037f34c06a97ca0c9ab0ca44bd93 | |
parent | d8e683ef0b15e00bba9c241181e7d3247d30539c (diff) |
[bug] correct error message coming from copypasta
-rw-r--r-- | standalone/bonafide.go | 2 |
1 files changed, 1 insertions, 1 deletions
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 |