mirror of
https://github.com/bluenviron/mediamtx.git
synced 2025-12-24 03:51:57 -08:00
parent
61d300396d
commit
efcc4c4e65
13 changed files with 200 additions and 105 deletions
27
internal/httpserv/handler_exit_on_panic.go
Normal file
27
internal/httpserv/handler_exit_on_panic.go
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
package httpserv
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"net/http"
|
||||
"os"
|
||||
"runtime"
|
||||
)
|
||||
|
||||
// exit when there's a panic inside the HTTP handler.
|
||||
// https://github.com/golang/go/issues/16542
|
||||
type handlerExitOnPanic struct {
|
||||
http.Handler
|
||||
}
|
||||
|
||||
func (h *handlerExitOnPanic) ServeHTTP(w http.ResponseWriter, r *http.Request) {
|
||||
defer func() {
|
||||
err := recover()
|
||||
if err != nil {
|
||||
buf := make([]byte, 1<<20)
|
||||
n := runtime.Stack(buf, true)
|
||||
fmt.Fprintf(os.Stderr, "panic: %v\n\n%s", err, buf[:n])
|
||||
os.Exit(1)
|
||||
}
|
||||
}()
|
||||
h.Handler.ServeHTTP(w, r)
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue