-
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Open
Labels
Description
I was playing with sqs + event source mapping and found an error on a lambda that works OK with real SQS
turns out, moto formats the message with
Line 163 in 3b56583
return escape(self._body).replace('"', """).replace("\r", "
") |
which results in message bodies that are not JSON parseable
seems like a pretty old change, do you recall the rationale behind .replace('"', """)
?