auth-api: fix: was missing newly introduced metrics

This commit is contained in:
Pascal Bleser committed 2026-07-09 14:15:49 +02:00
1 parent 8cf5aa3e4c
commit 68eaafece8
1 file changed
+1 -1
@@ -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() ?
}