fix receiving of messages from queues with a dot character in their name

This commit is contained in:
Waldemar Hummer 2017-08-05 15:47:40 +10:00
commit ce2f3e6e2b
2 changed files with 19 additions and 12 deletions

View file

@ -9,5 +9,5 @@ dispatch = SQSResponse().dispatch
url_paths = {
'{0}/$': dispatch,
'{0}/(?P<account_id>\d+)/(?P<queue_name>[a-zA-Z0-9\-_]+)': dispatch,
'{0}/(?P<account_id>\d+)/(?P<queue_name>[a-zA-Z0-9\-_\.]+)': dispatch,
}