Skip to content

Commit

Permalink
Report error when unable to create EC2 client
Browse files Browse the repository at this point in the history
This should help with sorenmat#38
  • Loading branch information
Soren Mathiasen committed Nov 7, 2018
1 parent d71702b commit f32225d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ func main() {

ec2client, err := ec2client()
if err != nil {
log.Fatal("unable to create a client for EC2")
log.Fatal("unable to create a client for EC2 ", err)
}
// Create a CRD client interface
crdclient := client.CrdClient(crdcs, scheme, "")
Expand Down

0 comments on commit f32225d

Please sign in to comment.