diff --git a/src/runtime/traceback.go b/src/runtime/traceback.go index 276e601f7c..b3baa3b4ed 100644 --- a/src/runtime/traceback.go +++ b/src/runtime/traceback.go @@ -1255,7 +1255,11 @@ func goroutineheader(gp *g) { print(", locked to thread") } if bubble := gp.bubble; bubble != nil { - print(", synctest bubble ", bubble.root.goid) + print(", synctest bubble ", bubble.root.goid, ", ") + if !gp.waitreason.isIdleInSynctest() { + print("not ") + } + print("durably blocked") } print("]:\n") }