Skip to content

Commit

Permalink
Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
neekolas committed Oct 19, 2023
1 parent 9f98795 commit d496271
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions pkg/server/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -233,10 +233,14 @@ func New(ctx context.Context, log *zap.Logger, options Options) (*Server, error)
if err != nil {
return nil, errors.Wrap(err, "creating mls db")
}

mlsStore, err = mlsstore.New(mlsstore.Config{
Log: s.log,
DB: mlsDb,
})
if err != nil {
return nil, errors.Wrap(err, "creating mls store")
}
}

// Initialize gRPC server.
Expand Down

0 comments on commit d496271

Please sign in to comment.