Skip to content

Commit

Permalink
resolve comments
Browse files Browse the repository at this point in the history
  • Loading branch information
Lifosmin Simon committed Sep 19, 2024
1 parent b83fef8 commit 2c7d3fa
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions internal/server/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -122,8 +122,8 @@ func RunServer(config *Config) error {
otelgrpc.StreamServerInterceptor(),
)),
grpc.UnaryInterceptor(grpc_middleware.ChainUnaryServer(
authInterceptor,
grpc_logrus.UnaryServerInterceptor(logrusEntry),
authInterceptor,
enrichLogrusFields(),
otelgrpc.UnaryServerInterceptor(),
grpc_recovery.UnaryServerInterceptor(
Expand Down Expand Up @@ -187,7 +187,6 @@ func RunServer(config *Config) error {
grpc.MaxCallRecvMsgSize(config.GRPC.MaxCallRecvMsgSize),
grpc.MaxCallSendMsgSize(config.GRPC.MaxCallSendMsgSize),
),
grpc.WithDisableRetry(),
)
if err != nil {
return err
Expand Down

0 comments on commit 2c7d3fa

Please sign in to comment.