From 82d1f2cf0b6b48d2e1b12e5eba42869498ffdc7b Mon Sep 17 00:00:00 2001 From: Alexey Khit Date: Sat, 2 Sep 2023 07:35:58 +0300 Subject: [PATCH] Add new goroutine to debug stack --- internal/debug/stack.go | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/internal/debug/stack.go b/internal/debug/stack.go index d2508d9f..f8d62772 100644 --- a/internal/debug/stack.go +++ b/internal/debug/stack.go @@ -3,9 +3,10 @@ package debug import ( "bytes" "fmt" - "github.com/AlexxIT/go2rtc/internal/api" "net/http" "runtime" + + "github.com/AlexxIT/go2rtc/internal/api" ) var stackSkip = [][]byte{ @@ -24,6 +25,9 @@ var stackSkip = [][]byte{ []byte("created by github.com/AlexxIT/go2rtc/internal/rtsp.Init"), []byte("created by github.com/AlexxIT/go2rtc/internal/srtp.Init"), + // homekit + []byte("created by github.com/AlexxIT/go2rtc/internal/homekit.Init"), + // webrtc/api.go []byte("created by github.com/pion/ice/v2.NewTCPMuxDefault"), []byte("created by github.com/pion/ice/v2.NewUDPMuxDefault"),