From 1a9d9d61adc63d02c51886640f7a64efec7110dd Mon Sep 17 00:00:00 2001 From: Tim Beatham Date: Sat, 30 Dec 2023 22:26:08 +0000 Subject: [PATCH] 66-ipv6-address-not-conforming-to-spec - Missing commit --- pkg/ctrlserver/ctrlserver.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pkg/ctrlserver/ctrlserver.go b/pkg/ctrlserver/ctrlserver.go index 464eb67..cb0c75f 100644 --- a/pkg/ctrlserver/ctrlserver.go +++ b/pkg/ctrlserver/ctrlserver.go @@ -34,7 +34,7 @@ func NewCtrlServer(params *NewCtrlServerParams) (*MeshCtrlServer, error) { nodeFactory := &crdt.MeshNodeFactory{ Config: *params.Conf, } - idGenerator := &lib.IDNameGenerator{} + idGenerator := &lib.ShortIDGenerator{} ipAllocator := &ip.ULABuilder{} interfaceManipulator := wg.NewWgInterfaceManipulator(params.Client) @@ -89,7 +89,6 @@ func NewCtrlServer(params *NewCtrlServerParams) (*MeshCtrlServer, error) { return ctrlServer, nil } - func (s *MeshCtrlServer) GetConfiguration() *conf.DaemonConfiguration { return s.Conf }