diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 54bd52527f..72149ea050 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -43,7 +43,7 @@ Once the Hermit environment is activated you can type the following to start a hot-reloading ftl agent: ``` -$ ftl dev ./examples/go +$ ftl dev --recreate ./examples/go ``` ## Development processes diff --git a/backend/controller/controller.go b/backend/controller/controller.go index 46e96487c3..0719a286f5 100644 --- a/backend/controller/controller.go +++ b/backend/controller/controller.go @@ -138,6 +138,8 @@ func Start(ctx context.Context, config Config, runnerScaling scaling.RunnerScali g, ctx := errgroup.WithContext(ctx) g.Go(func() error { + logger.Infof("HTTP ingress server listening on: %s", config.IngressBind) + return ftlhttp.Serve(ctx, config.IngressBind, ingressHandler) })