From ddc0d5b8aa93e4a3d0cf51b60a50de3d0dd35dcc Mon Sep 17 00:00:00 2001 From: Ivan Osipov Date: Thu, 5 Oct 2023 20:47:25 +0400 Subject: [PATCH] Fix typo in server.go Signed-off-by: Ivan Osipov --- pkg/networkservice/common/discoverforwarder/server.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/networkservice/common/discoverforwarder/server.go b/pkg/networkservice/common/discoverforwarder/server.go index a9d84ba49..6d635d2bd 100644 --- a/pkg/networkservice/common/discoverforwarder/server.go +++ b/pkg/networkservice/common/discoverforwarder/server.go @@ -46,7 +46,7 @@ type discoverForwarderServer struct { // Requires not nil nsClient. func NewServer(nsClient registry.NetworkServiceRegistryClient, nseClient registry.NetworkServiceEndpointRegistryClient, opts ...Option) networkservice.NetworkServiceServer { if nseClient == nil { - panic("mseClient can not be nil") + panic("nseClient can not be nil") } if nsClient == nil { panic("nsClient can not be nil")