Remove stuff that doesn't need to change

This commit is contained in:
Ian Dees 2015-11-09 20:19:51 -05:00
parent 97b7781c13
commit 27e7767883
2 changed files with 2 additions and 7 deletions

View File

@ -11,11 +11,6 @@ class ReceiptHandleIsInvalid(Exception):
status_code = 400
class InvalidParameterValue(Exception):
description = "One or more parameters are invalid. Reason: Message must be shorter than 262144 bytes."
status_code = 400
class MessageAttributesInvalid(Exception):
status_code = 400

View File

@ -12,8 +12,7 @@ from moto.core.utils import camelcase_to_underscores, get_random_message_id
from .utils import generate_receipt_handle, unix_time_millis
from .exceptions import (
ReceiptHandleIsInvalid,
MessageNotInflight,
InvalidParameterValue,
MessageNotInflight
)
DEFAULT_ACCOUNT_ID = 123456789012
@ -121,6 +120,7 @@ class Queue(object):
self.created_timestamp = now
self.delay_seconds = 0
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.receive_message_wait_time_seconds = 0