1
0
Fork 0
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:
Yuvraj 2020-05-27 11:08:59 -07:00 committed by GitHub
parent 68c431e8f0
commit 5c66742f52
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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)
}
}