mirror of
https://github.com/netbirdio/dex.git
synced 2026-05-22 18:43:53 -07:00
Merge pull request #1429 from tsuna/master
server: add metrics for CORS handlers.
This commit is contained in:
+1
-1
@@ -257,7 +257,7 @@ func newServer(ctx context.Context, c Config, rotationStrategy rotationStrategy)
|
||||
corsOption := handlers.AllowedOrigins(c.AllowedOrigins)
|
||||
handler = handlers.CORS(corsOption)(handler)
|
||||
}
|
||||
r.Handle(path.Join(issuerURL.Path, p), handler)
|
||||
r.Handle(path.Join(issuerURL.Path, p), instrumentHandlerCounter(p, handler))
|
||||
}
|
||||
r.NotFoundHandler = http.HandlerFunc(http.NotFound)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user