From d253bd61ceed6e632a60f29ef87b6e2f4c5d9f14 Mon Sep 17 00:00:00 2001 From: Alex Snaps Date: Mon, 4 Nov 2024 12:39:03 -0500 Subject: [PATCH] connection.id is unsigned 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 1e65797..5c6fc20 100644 --- a/src/data/cel.rs +++ b/src/data/cel.rs @@ -257,7 +257,7 @@ fn new_well_known_attribute_map() -> HashMap { ValueType::String, ), ("ratelimit.domain".into(), ValueType::String), - ("connection.id".into(), ValueType::Int), + ("connection.id".into(), ValueType::UInt), ("ratelimit.hits_addend".into(), ValueType::Int), ("request.headers".into(), ValueType::Map), ("request.context_extensions".into(), ValueType::Map),