(request_id: &str)
| 262 | } |
| 263 | |
| 264 | fn parse_cache_telemetry_request_id(request_id: &str) -> PyResult<Uuid> { |
| 265 | Uuid::parse_str(request_id).map_err(|e| { |
| 266 | pyo3::exceptions::PyValueError::new_err(format!("invalid request_id UUID: {e}")) |
| 267 | }) |
| 268 | } |
| 269 | |
| 270 | fn parse_cache_telemetry_timestamp(timestamp: Option<&str>) -> PyResult<DateTime<Utc>> { |
| 271 | match timestamp { |
no outgoing calls
no test coverage detected