Skip to content

Commit

Permalink
Fix typo in server.go (networkservicemesh#1526)
Browse files Browse the repository at this point in the history
Signed-off-by: Ivan Osipov <bellycat77@gmail.com>
  • Loading branch information
bellycat77 authored Sep 24, 2024
1 parent ebdf9cf commit 052aded
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/networkservice/common/discoverforwarder/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down

0 comments on commit 052aded

Please sign in to comment.