Fix broken format of SQS QueueArn attribute
This commit is contained in:
parent
1f618a3cb5
commit
ef8b6c1f28
1 changed files with 1 additions and 1 deletions
|
|
@ -122,7 +122,7 @@ class Queue(object):
|
|||
self.last_modified_timestamp = now
|
||||
self.maximum_message_size = 64 << 10
|
||||
self.message_retention_period = 86400 * 4 # four days
|
||||
self.queue_arn = 'arn:aws:sqs:sqs.us-east-1:123456789012:%s' % self.name
|
||||
self.queue_arn = 'arn:aws:sqs:us-east-1:123456789012:%s' % self.name
|
||||
self.receive_message_wait_time_seconds = 0
|
||||
|
||||
@classmethod
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue