We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
I wrote a simple program and killed it with SIGQUIT with various go versions and captured the backtraces
package main import "time" func main() { time.Sleep(time.Minute) }
With go1.21.4 panic parse works fine backtrace.go1.21.4.log
However with go1.22.5 backtrace.go1.22.5.log and go 1.23.2 backtrace.go.1.23.2.log panicparse does not recognise the backtrace and does nothing.
I think this change in the backtrace is probably the breaking one but I haven't looked in the source yet!
-goroutine 0 [idle]: +goroutine 0 gp=0x4ded80 m=0 mp=0x4df340 [idle]:
The text was updated successfully, but these errors were encountered:
Thanks, indeed. I'll gladly accept PRs or I'll work on this relatively soon.
Sorry, something went wrong.
Tests started failing in go1.21.
Fails:
go install golang.org/dl/go1.21.13@latest go1.21.13 download go1.21.13 test ./...
Succeeds:
go install golang.org/dl/go1.20.14@latest go1.20.14 download go1.20.14 test ./...
This might be a useful workaround at the moment: search in regexp for (goroutine \d+) gp=.+ m=.*(mp=.+)* \[ and replace them with $1 \[.
(goroutine \d+) gp=.+ m=.*(mp=.+)* \[
$1 \[
No branches or pull requests
I wrote a simple program and killed it with SIGQUIT with various go versions and captured the backtraces
With go1.21.4 panic parse works fine backtrace.go1.21.4.log
However with go1.22.5 backtrace.go1.22.5.log and go 1.23.2 backtrace.go.1.23.2.log panicparse does not recognise the backtrace and does nothing.
I think this change in the backtrace is probably the breaking one but I haven't looked in the source yet!
The text was updated successfully, but these errors were encountered: