diff options
author | Sebastien Douheret <sebastien.douheret@iot.bzh> | 2017-09-25 11:42:57 +0200 |
---|---|---|
committer | Sebastien Douheret <sebastien.douheret@iot.bzh> | 2017-09-25 11:42:57 +0200 |
commit | c1104e1be920ea11a42a873bad24e1f8f29990a6 (patch) | |
tree | c8c377780a42c9fb24863a5abb5f73de86a7ce8f /main.go | |
parent | f7901489d13c90c0f4d4273e93eacc990087e6b8 (diff) |
Cosmetic fix
Signed-off-by: Sebastien Douheret <sebastien.douheret@iot.bzh>
Diffstat (limited to 'main.go')
-rw-r--r-- | main.go | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -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) |