From c028699babeaaf6a05f0752c852a8e762101bda5 Mon Sep 17 00:00:00 2001 From: prplV Date: Thu, 6 Mar 2025 11:00:17 +0300 Subject: [PATCH] - useless comment --- crates/api-grub/src/monitoring.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/crates/api-grub/src/monitoring.rs b/crates/api-grub/src/monitoring.rs index 564eb71..461b32c 100644 --- a/crates/api-grub/src/monitoring.rs +++ b/crates/api-grub/src/monitoring.rs @@ -140,7 +140,6 @@ impl MonitoringImporter { let cls = measure.get("cls"); let name = measure.get("name"); if id.is_some() && cls.is_some() { - // todo: later wait for Vaitaliy call of classification let id = id.unwrap().as_i64().unwrap_or_default(); let cls = cls.unwrap().as_str().unwrap_or_else(|| ""); let name = name.unwrap_or_else(|| &Value::Null).as_str().unwrap_or_else(|| "null");