@@ -87,15 +87,12 @@ pub struct Thread {
87
87
#[ metastructure( skip_serialization = "empty" ) ]
88
88
pub raw_stacktrace : Annotated < RawStacktrace > ,
89
89
90
- /// Indicates that this thread crashed (likely also crashing the application ).
90
+ /// Indicates that this thread requested the event (usually by crashing ).
91
91
pub crashed : Annotated < bool > ,
92
92
93
93
/// Indicates that the thread was not suspended when the event was created.
94
94
pub current : Annotated < bool > ,
95
95
96
- /// Indicates that this thread errored, which caused this event.
97
- pub errored : Annotated < bool > ,
98
-
99
96
/// Additional arbitrary fields for forwards compatibility.
100
97
#[ metastructure( additional_properties) ]
101
98
pub other : Object < Value > ,
@@ -133,7 +130,6 @@ fn test_thread_roundtrip() {
133
130
"name": "myname",
134
131
"crashed": true,
135
132
"current": true,
136
- "errored": true,
137
133
"other": "value"
138
134
}"# ;
139
135
let thread = Annotated :: new ( Thread {
@@ -143,7 +139,6 @@ fn test_thread_roundtrip() {
143
139
raw_stacktrace : Annotated :: empty ( ) ,
144
140
crashed : Annotated :: new ( true ) ,
145
141
current : Annotated :: new ( true ) ,
146
- errored : Annotated :: new ( true ) ,
147
142
other : {
148
143
let mut map = Map :: new ( ) ;
149
144
map. insert (
0 commit comments