From 61636e6801f81df50f76182c4066ea2202c3c801 Mon Sep 17 00:00:00 2001 From: Jacob LeGrone Date: Fri, 25 Feb 2022 23:03:33 -0500 Subject: [PATCH] Use dynamic ports from CLI --- cmd/temporalite/main.go | 1 + 1 file changed, 1 insertion(+) diff --git a/cmd/temporalite/main.go b/cmd/temporalite/main.go index d6af349e..72ad1e45 100644 --- a/cmd/temporalite/main.go +++ b/cmd/temporalite/main.go @@ -157,6 +157,7 @@ func buildCLI() *cli.App { } opts := []temporalite.ServerOption{ + temporalite.WithDynamicPorts(), temporalite.WithFrontendPort(serverPort), temporalite.WithFrontendIP(ip), temporalite.WithDatabaseFilePath(c.String(dbPathFlag)),