From c1104e1be920ea11a42a873bad24e1f8f29990a6 Mon Sep 17 00:00:00 2001 From: Sebastien Douheret Date: Mon, 25 Sep 2017 11:42:57 +0200 Subject: Cosmetic fix Signed-off-by: Sebastien Douheret --- main.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'main.go') diff --git a/main.go b/main.go index a51a7a8..c73d881 100644 --- a/main.go +++ b/main.go @@ -209,8 +209,10 @@ func xdsApp(cliCtx *cli.Context) error { return cli.NewExitError(err, -6) } - // Create and start Web Server + // Create Web Server ctx.WWWServer = webserver.New(ctx.Config, ctx.MFolders, ctx.SDKs, ctx.Log) + + // Run Web Server until exit requested (blocking call) if err = ctx.WWWServer.Serve(); err != nil { ctx.Log.Println(err) return cli.NewExitError(err, -7) -- cgit 1.2.3-korg