Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion update_security_groups_lambda/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ Traceback (most recent call last):
File "/var/task/lambda_function.py", line 29, in lambda_handler
ip_ranges = json.loads(get_ip_groups_json(message['url'], message['md5']))
File "/var/task/lambda_function.py", line 50, in get_ip_groups_json
raise Exception('MD5 Missmatch: got ' + hash + ' expected ' + expected_hash)
raise Exception('MD5 Mismatch: got ' + hash + ' expected ' + expected_hash)
Exception: MD5 Mismatch: got <b>2e967e943cf98ae998efeec05d4f351c</b> expected 7fd59f5c7f5cf643036cbd4443ad3e4b
</pre>
You will see a message indicating there was a hash mismatch. Normally, a real SNS notification from the IP Ranges SNS topic will include the right hash, but because our sample event is a test case representing the event, you will need to update the sample event manually to have the expected hash.
Expand Down