Skip to content

Commit

Permalink
Merge pull request #131 from Kuadrant/fix_cid
Browse files Browse the repository at this point in the history
connection.id is unsigned
  • Loading branch information
alexsnaps authored Nov 4, 2024
2 parents 2e8274c + d253bd6 commit 4d9451d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/data/cel.rs
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ fn new_well_known_attribute_map() -> HashMap<Path, ValueType> {
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),
Expand Down

0 comments on commit 4d9451d

Please sign in to comment.