Hide the batch stats to make insta pass

This commit is contained in:
Kerollmops 2025-02-20 10:03:48 +01:00
parent 05cc8c650c
commit 1d99c8465c
No known key found for this signature in database
GPG key ID: F250A4C4E3AE5F5F
2 changed files with 9 additions and 3 deletions

View file

@ -60,7 +60,8 @@ pub struct BatchStats {
pub status: BTreeMap<Status, u32>,
pub types: BTreeMap<Kind, u32>,
pub index_uids: BTreeMap<String, u32>,
#[serde(default, skip_serializing_if = "serde_json::Map::is_empty")]
pub call_trace: serde_json::Map<String, serde_json::Value>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(default, skip_serializing_if = "Option::is_none")]
pub write_channel_congestion: Option<serde_json::Map<String, serde_json::Value>>,
}