From e7c662ac0dca34c64f9cdae10385885e9cb89fbe Mon Sep 17 00:00:00 2001 From: Alex Snaps Date: Thu, 24 Oct 2024 07:39:00 -0400 Subject: [PATCH] request.time is a Timestamp Signed-off-by: Alex Snaps --- src/data/cel.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/data/cel.rs b/src/data/cel.rs index a1f2557..c2c4d67 100644 --- a/src/data/cel.rs +++ b/src/data/cel.rs @@ -201,7 +201,7 @@ fn copy(value_type: &ValueType) -> ValueType { fn new_well_known_attribute_map() -> HashMap { HashMap::from([ - ("request.time".into(), ValueType::String), + ("request.time".into(), ValueType::Timestamp), ("request.id".into(), ValueType::String), ("request.protocol".into(), ValueType::String), ("request.scheme".into(), ValueType::String),