Skip to content

Commit f31bc3a

Browse files
authored
[bugfix] Fix error handling for DNS CLI (cloudflare#148)
1 parent 6fd9089 commit f31bc3a

File tree

1 file changed

+9
-6
lines changed

1 file changed

+9
-6
lines changed

cmd/flarectl/dns.go

+9-6
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@ package main
22

33
import (
44
"fmt"
5+
"os"
56
"strconv"
67
"strings"
78

89
"github.com/cloudflare/cloudflare-go"
910
"github.com/codegangsta/cli"
10-
"github.com/pkg/errors"
1111
)
1212

1313
func formatDNSRecord(record cloudflare.DNSRecord) table {
@@ -53,7 +53,8 @@ func dnsCreate(c *cli.Context) {
5353
}
5454
resp, err := api.CreateDNSRecord(zoneID, record)
5555
if err != nil {
56-
errors.Wrap(err, "error creating DNS record")
56+
fmt.Fprintln(os.Stderr, "Error creating DNS record: ", err)
57+
return
5758
}
5859

5960
output := []table{
@@ -81,7 +82,7 @@ func dnsCreateOrUpdate(c *cli.Context) {
8182

8283
zoneID, err := api.ZoneIDByName(zone)
8384
if err != nil {
84-
fmt.Println(err)
85+
fmt.Fprintln(os.Stderr, "Error updating DNS record: ", err)
8586
return
8687
}
8788

@@ -91,7 +92,7 @@ func dnsCreateOrUpdate(c *cli.Context) {
9192
}
9293
records, err := api.DNSRecords(zoneID, rr)
9394
if err != nil {
94-
fmt.Println(err)
95+
fmt.Fprintln(os.Stderr, "Error fetching DNS records: ", err)
9596
return
9697
}
9798

@@ -165,7 +166,8 @@ func dnsUpdate(c *cli.Context) {
165166
}
166167
err = api.UpdateDNSRecord(zoneID, recordID, record)
167168
if err != nil {
168-
fmt.Println("Error updating DNS record:", err)
169+
fmt.Fprintln(os.Stderr, "Error updating DNS record: ", err)
170+
return
169171
}
170172
}
171173

@@ -189,6 +191,7 @@ func dnsDelete(c *cli.Context) {
189191

190192
err = api.DeleteDNSRecord(zoneID, recordID)
191193
if err != nil {
192-
fmt.Println("Error deleting DNS record:", err)
194+
fmt.Fprintln(os.Stderr, "Error deleting DNS record: ", err)
195+
return
193196
}
194197
}

0 commit comments

Comments
 (0)