From 316750cc8cd8b3296fa233f4da2e39cbcdc34517 Mon Sep 17 00:00:00 2001 From: Julien Robert Date: Tue, 27 Feb 2024 08:55:37 +0100 Subject: [PATCH] chore(server): implement comment (#19569) --- server/start.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/start.go b/server/start.go index deeacb5d7c..ae64602a19 100644 --- a/server/start.go +++ b/server/start.go @@ -273,7 +273,7 @@ func startStandAlone[T types.Application](svrCtx *Context, svrCfg serverconfig.C return err } - if opts.PostSetup != nil { + if opts.PostSetupStandalone != nil { if err := opts.PostSetupStandalone(app, svrCtx, clientCtx, ctx, g); err != nil { return err }