Skip to content

Commit cc70001

Browse files
Adding docs
1 parent e93d74d commit cc70001

File tree

2 files changed

+840
-286
lines changed

2 files changed

+840
-286
lines changed

aws_lambda_powertools/utilities/kafka_consumer/consumer_records.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ def key(self) -> Any:
4141

4242
return deserialized_key
4343

44-
return key
44+
return key # MISSING DESERIALIZER
4545

4646
@cached_property
4747
def value(self) -> Any:
@@ -61,7 +61,7 @@ def value(self) -> Any:
6161

6262
return deserialized_value
6363

64-
return value
64+
return value # MISSING DESERIALIZER
6565

6666
@property
6767
def original_value(self) -> str:

0 commit comments

Comments
 (0)