mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-31 03:45:17 +00:00
middelware removed (#882)
This commit is contained in:
parent
68c431e8f0
commit
5c66742f52
1 changed files with 0 additions and 15 deletions
|
@ -1,15 +0,0 @@
|
|||
package webhooks
|
||||
|
||||
import (
|
||||
"net/http"
|
||||
"time"
|
||||
)
|
||||
|
||||
func timeoutHandler(h http.Handler, timeout time.Duration) http.HandlerFunc {
|
||||
return func(w http.ResponseWriter, r *http.Request) {
|
||||
var timeoutHandler http.Handler
|
||||
msg := "ok"
|
||||
timeoutHandler = http.TimeoutHandler(h, timeout*time.Second, msg)
|
||||
timeoutHandler.ServeHTTP(w, r)
|
||||
}
|
||||
}
|
Loading…
Add table
Reference in a new issue