Skip to content

Commit

Permalink
fix: use glg fatal function
Browse files Browse the repository at this point in the history
Signed-off-by: hlts2 <hiroto.funakoshi.hiroto@gmail.com>
  • Loading branch information
hlts2 committed May 13, 2024
1 parent 6667ced commit a1cbcf0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion example/server/egress-filter/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ func (s *myEgressServer) FilterVector(ctx context.Context, in *payload.Filter_Ve
func main() {
listener, err := net.Listen("tcp", fmt.Sprintf(":%d", egressServerPort))
if err != nil {
panic(err)
glg.Fatal(err)

Check warning on line 106 in example/server/egress-filter/main.go

View check run for this annotation

Codecov / codecov/patch

example/server/egress-filter/main.go#L103-L106

Added lines #L103 - L106 were not covered by tests
}

s := grpc.NewServer()
Expand Down

0 comments on commit a1cbcf0

Please sign in to comment.