auth-api: fix: was missing newly introduced metrics

This commit is contained in:
Pascal Bleser
2025-05-30 15:29:14 +02:00
parent e09014a485
commit 0945ae1d42

View File

@@ -45,7 +45,7 @@ func NewService(opts ...Option) Service {
),
)
svc, err := NewAuthenticationApi(options.Config, &options.Logger, options.TraceProvider, m)
svc, err := NewAuthenticationApi(options.Config, &options.Logger, options.Metrics, options.TraceProvider, m)
if err != nil {
panic(err) // TODO p.bleser what to do when we encounter an error in a NewService() ?
}