From bdb970203c43a26f90fab04b7529ccb229bfdcfd Mon Sep 17 00:00:00 2001 From: James Shubin Date: Wed, 10 Aug 2016 09:39:52 -0400 Subject: [PATCH] Start converger even if graph is empty --- main.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/main.go b/main.go index 0960a393..b5ac0e45 100644 --- a/main.go +++ b/main.go @@ -244,6 +244,9 @@ func run(c *cli.Context) error { } }() + if !c.IsSet("file") && !c.IsSet("puppet") { + converger.Start() // better start this for empty graphs + } log.Println("Main: Running...") waitForSignal(exit) // pass in exit channel to watch