Remove stuff that doesn't need to change
This commit is contained in:
parent
97b7781c13
commit
27e7767883
@ -11,11 +11,6 @@ class ReceiptHandleIsInvalid(Exception):
|
|||||||
status_code = 400
|
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):
|
class MessageAttributesInvalid(Exception):
|
||||||
status_code = 400
|
status_code = 400
|
||||||
|
|
||||||
|
@ -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 .utils import generate_receipt_handle, unix_time_millis
|
||||||
from .exceptions import (
|
from .exceptions import (
|
||||||
ReceiptHandleIsInvalid,
|
ReceiptHandleIsInvalid,
|
||||||
MessageNotInflight,
|
MessageNotInflight
|
||||||
InvalidParameterValue,
|
|
||||||
)
|
)
|
||||||
|
|
||||||
DEFAULT_ACCOUNT_ID = 123456789012
|
DEFAULT_ACCOUNT_ID = 123456789012
|
||||||
@ -121,6 +120,7 @@ class Queue(object):
|
|||||||
self.created_timestamp = now
|
self.created_timestamp = now
|
||||||
self.delay_seconds = 0
|
self.delay_seconds = 0
|
||||||
self.last_modified_timestamp = now
|
self.last_modified_timestamp = now
|
||||||
|
self.maximum_message_size = 64 << 10
|
||||||
self.message_retention_period = 86400 * 4 # four days
|
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:sqs.us-east-1:123456789012:%s' % self.name
|
||||||
self.receive_message_wait_time_seconds = 0
|
self.receive_message_wait_time_seconds = 0
|
||||||
|
Loading…
Reference in New Issue
Block a user