Skip to content

Commit 29f2cde

Browse files
authored
fix(eap): Encode item type in headers to a smaller representation (#4761)
1 parent 3cd5ef7 commit 29f2cde

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

relay-server/src/services/store.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1053,7 +1053,7 @@ impl StoreService {
10531053
("project_id".to_owned(), scoping.project_id.to_string()),
10541054
(
10551055
"item_type".to_owned(),
1056-
TraceItemType::Log.as_str_name().to_owned(),
1056+
(TraceItemType::Log as i32).to_string(),
10571057
),
10581058
]),
10591059
message: trace_item,

0 commit comments

Comments
 (0)