From e81808c0c856a3d9e4be9f7ba7ce6bb5b17b4514 Mon Sep 17 00:00:00 2001 From: Moe Jangda Date: Sat, 1 Jun 2024 22:59:43 -0500 Subject: [PATCH 1/2] log http ingress server address --- backend/controller/controller.go | 2 ++ 1 file changed, 2 insertions(+) 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) }) From 9ac2b405f56a12f9e567f9162e1ad7792b8ee3b8 Mon Sep 17 00:00:00 2001 From: Moe Jangda Date: Sat, 1 Jun 2024 23:00:09 -0500 Subject: [PATCH 2/2] update command in `CONTRIBUTING.md` --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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