summaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-10-27 03:17:34 -0500
committerJeff Carr <[email protected]>2024-10-27 03:17:34 -0500
commitd948581300ecea1b5407662be9e812ddf237e6cf (patch)
treefd3d244edb003686e7fc97f5e2cd65ccb30f7ccc /main.go
parent71f83d400048f6d4219793a76a3ffce16b8c63d8 (diff)
add /dumpdroplets
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'main.go')
-rw-r--r--main.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/main.go b/main.go
index 794ee83..31fbd3d 100644
--- a/main.go
+++ b/main.go
@@ -72,7 +72,7 @@ func main() {
var newEvents []*pb.Event
// sanity check the cluster & droplets
- if err := ValidateDroplets(me.cluster); err != nil {
+ if _, _, err := ValidateDroplets(me.cluster); err != nil {
log.Info("todo: add flag to ignore. for now, fix problems in the config file.")
os.Exit(0)
}