From 3a89a410d30de312af88ee70f79151b55eacf02c 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 9feae2ba..e86cd202 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)),