internal/middleware: fix twirp
This commit is contained in:
parent
2f92dfbe46
commit
143a2f8e3f
|
@ -3,6 +3,7 @@ package middleware
|
|||
import (
|
||||
"net/http"
|
||||
|
||||
"github.com/Xe/ln"
|
||||
"github.com/twitchtv/twirp"
|
||||
)
|
||||
|
||||
|
@ -10,7 +11,11 @@ import (
|
|||
func Twirp(next http.Handler) http.Handler {
|
||||
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
||||
ctx := r.Context()
|
||||
ctx, _ = twirp.WithHTTPRequestHeaders(ctx, r.Header)
|
||||
ctx, err := twirp.WithHTTPRequestHeaders(ctx, r.Header)
|
||||
if err != nil {
|
||||
ln.Error(ctx, err, ln.Action("can't get request headers"))
|
||||
http.Error(w, err.Error(), http.StatusInternalServerError)
|
||||
}
|
||||
|
||||
next.ServeHTTP(w, r.WithContext(ctx))
|
||||
})
|
||||
|
|
Loading…
Reference in New Issue