From ea684a5ed595279c9a8fdedd60f7a3f4a52523b7 Mon Sep 17 00:00:00 2001 From: Fran Bull Date: Thu, 27 Feb 2025 10:00:50 -0800 Subject: [PATCH] update for start signature change --- cmd/natc-consensus/ippool.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/natc-consensus/ippool.go b/cmd/natc-consensus/ippool.go index 0ae3b773c..efb72d213 100644 --- a/cmd/natc-consensus/ippool.go +++ b/cmd/natc-consensus/ippool.go @@ -122,7 +122,7 @@ func (ipp *fsm) applyMarkLastUsed(from tailcfg.NodeID, addr netip.Addr, domain s } func (ipp *ipPool) StartConsensus(ctx context.Context, ts *tsnet.Server, clusterTag string) error { - cns, err := tsconsensus.Start(ctx, ts, (*fsm)(ipp), clusterTag, tsconsensus.DefaultConfig()) + cns, err := tsconsensus.Start(ctx, ts, (*fsm)(ipp), clusterTag, tsconsensus.DefaultConfig(), true) if err != nil { return err }