Skip to content

Commit

Permalink
Merge pull request #90 from kubukoz/records-decoder-ddb
Browse files Browse the repository at this point in the history
Fix dynamodb stream event decoder
  • Loading branch information
armanbilge authored Dec 14, 2021
2 parents 418f4de + f7487ed commit 0f3052d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ final case class DynamoDBStreamEvent(

object DynamoDBStreamEvent {
implicit val decoder: Decoder[DynamoDBStreamEvent] =
Decoder.forProduct1("records")(DynamoDBStreamEvent.apply)
Decoder.forProduct1("Records")(DynamoDBStreamEvent.apply)

implicit def kernelSource: KernelSource[DynamoDBStreamEvent] = KernelSource.emptyKernelSource
}

0 comments on commit 0f3052d

Please sign in to comment.