You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Allow more SQS settings to be set by env var (#20)
* Allow more SQS settings to be set by env var
* Move sqs config under main config type
* Add yaml tags
Parse message bodies with complex types (#4)
We assumed initially that every field in an SNS message would be a
string. However some of them can be complex objects. We can avoid
having to figure that out by just parsing them all to json.RawMessage
and then parsing the only two fields we actually need to strings.