From 46da3bdceec4d308453ff6107d9ce6f8feeed13e Mon Sep 17 00:00:00 2001 From: Derrick Hammer Date: Sun, 28 Jan 2024 05:08:19 -0500 Subject: [PATCH] fix: add invoke to ensure http server triggers --- cmd/portal/main.go | 1 + 1 file changed, 1 insertion(+) diff --git a/cmd/portal/main.go b/cmd/portal/main.go index b39c756..58b3b73 100644 --- a/cmd/portal/main.go +++ b/cmd/portal/main.go @@ -59,5 +59,6 @@ func main() { fx.Invoke(protocols.SetupLifecycles), fx.Invoke(api.SetupLifecycles), fx.Provide(NewServer), + fx.Invoke(func(*http.Server) {}), ).Run() }