File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed
server/svix-server/src/core Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -109,7 +109,7 @@ impl<B> OnResponse<B> for AxumOtelOnResponse {
109
109
span : & tracing:: Span ,
110
110
) {
111
111
let status = response. status ( ) . as_u16 ( ) . to_string ( ) ;
112
- span. record ( "http.status_code" , & tracing:: field:: display ( status) ) ;
112
+ span. record ( "http.status_code" , tracing:: field:: display ( status) ) ;
113
113
span. record ( "otel.status_code" , "OK" ) ;
114
114
115
115
tracing:: debug!(
Original file line number Diff line number Diff line change @@ -1232,6 +1232,7 @@ macro_rules! repr_enum {
1232
1232
/// 1. Name of the enum type, `Foo`
1233
1233
/// 2. The repr type used, e.g. in case of `repr(i16)` it must be `i16`
1234
1234
/// 3. The string description to be used in the docs.
1235
+ ///
1235
1236
/// Remaining arguments must be the variants in order. For example:
1236
1237
///
1237
1238
/// ```ignore
You can’t perform that action at this time.
0 commit comments