Skip to content

Commit 1781f89

Browse files
authored
Make Kafka header values i8 instead of u8 (#689)
1 parent 15dbde0 commit 1781f89

File tree

1 file changed

+1
-1
lines changed
  • lambda-events/src/event/kafka

1 file changed

+1
-1
lines changed

lambda-events/src/event/kafka/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ pub struct KafkaRecord {
2828
pub timestamp_type: Option<String>,
2929
pub key: Option<String>,
3030
pub value: Option<String>,
31-
pub headers: Vec<HashMap<String, Vec<u8>>>,
31+
pub headers: Vec<HashMap<String, Vec<i8>>>,
3232
}
3333

3434
#[cfg(test)]

0 commit comments

Comments
 (0)