async-lambda-unstable 0.4.5__tar.gz → 0.4.6__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {async-lambda-unstable-0.4.5 → async-lambda-unstable-0.4.6}/PKG-INFO +1 -1
- {async-lambda-unstable-0.4.5 → async-lambda-unstable-0.4.6}/async_lambda/__init__.py +1 -1
- {async-lambda-unstable-0.4.5 → async-lambda-unstable-0.4.6}/async_lambda/controller.py +3 -3
- async-lambda-unstable-0.4.6/async_lambda/models/events/scheduled_event.py +4 -0
- {async-lambda-unstable-0.4.5 → async-lambda-unstable-0.4.6}/async_lambda_unstable.egg-info/PKG-INFO +1 -1
- async-lambda-unstable-0.4.5/async_lambda/models/events/scheduled_event.py +0 -5
- {async-lambda-unstable-0.4.5 → async-lambda-unstable-0.4.6}/README.md +0 -0
- {async-lambda-unstable-0.4.5 → async-lambda-unstable-0.4.6}/async_lambda/build_config.py +0 -0
- {async-lambda-unstable-0.4.5 → async-lambda-unstable-0.4.6}/async_lambda/cli.py +0 -0
- {async-lambda-unstable-0.4.5 → async-lambda-unstable-0.4.6}/async_lambda/client.py +0 -0
- {async-lambda-unstable-0.4.5 → async-lambda-unstable-0.4.6}/async_lambda/config.py +0 -0
- {async-lambda-unstable-0.4.5 → async-lambda-unstable-0.4.6}/async_lambda/defer.py +0 -0
- {async-lambda-unstable-0.4.5 → async-lambda-unstable-0.4.6}/async_lambda/env.py +0 -0
- {async-lambda-unstable-0.4.5 → async-lambda-unstable-0.4.6}/async_lambda/middleware.py +0 -0
- {async-lambda-unstable-0.4.5 → async-lambda-unstable-0.4.6}/async_lambda/models/__init__.py +0 -0
- {async-lambda-unstable-0.4.5 → async-lambda-unstable-0.4.6}/async_lambda/models/case_insensitive_dict.py +0 -0
- {async-lambda-unstable-0.4.5 → async-lambda-unstable-0.4.6}/async_lambda/models/events/__init__.py +0 -0
- {async-lambda-unstable-0.4.5 → async-lambda-unstable-0.4.6}/async_lambda/models/events/api_event.py +0 -0
- {async-lambda-unstable-0.4.5 → async-lambda-unstable-0.4.6}/async_lambda/models/events/base_event.py +0 -0
- {async-lambda-unstable-0.4.5 → async-lambda-unstable-0.4.6}/async_lambda/models/events/dynamodb_event.py +0 -0
- {async-lambda-unstable-0.4.5 → async-lambda-unstable-0.4.6}/async_lambda/models/events/managed_sqs_event.py +0 -0
- {async-lambda-unstable-0.4.5 → async-lambda-unstable-0.4.6}/async_lambda/models/events/unmanaged_sqs_event.py +0 -0
- {async-lambda-unstable-0.4.5 → async-lambda-unstable-0.4.6}/async_lambda/models/mock/mock_context.py +0 -0
- {async-lambda-unstable-0.4.5 → async-lambda-unstable-0.4.6}/async_lambda/models/mock/mock_event.py +0 -0
- {async-lambda-unstable-0.4.5 → async-lambda-unstable-0.4.6}/async_lambda/models/task.py +0 -0
- {async-lambda-unstable-0.4.5 → async-lambda-unstable-0.4.6}/async_lambda/py.typed +0 -0
- {async-lambda-unstable-0.4.5 → async-lambda-unstable-0.4.6}/async_lambda/util.py +0 -0
- {async-lambda-unstable-0.4.5 → async-lambda-unstable-0.4.6}/async_lambda_unstable.egg-info/SOURCES.txt +0 -0
- {async-lambda-unstable-0.4.5 → async-lambda-unstable-0.4.6}/async_lambda_unstable.egg-info/dependency_links.txt +0 -0
- {async-lambda-unstable-0.4.5 → async-lambda-unstable-0.4.6}/async_lambda_unstable.egg-info/entry_points.txt +0 -0
- {async-lambda-unstable-0.4.5 → async-lambda-unstable-0.4.6}/async_lambda_unstable.egg-info/requires.txt +0 -0
- {async-lambda-unstable-0.4.5 → async-lambda-unstable-0.4.6}/async_lambda_unstable.egg-info/top_level.txt +0 -0
- {async-lambda-unstable-0.4.5 → async-lambda-unstable-0.4.6}/pyproject.toml +0 -0
- {async-lambda-unstable-0.4.5 → async-lambda-unstable-0.4.6}/setup.cfg +0 -0
|
@@ -14,4 +14,4 @@ from .models.events.managed_sqs_event import ManagedSQSEvent as ManagedSQSEvent
|
|
|
14
14
|
from .models.events.scheduled_event import ScheduledEvent as ScheduledEvent
|
|
15
15
|
from .models.events.unmanaged_sqs_event import UnmanagedSQSEvent as UnmanagedSQSEvent
|
|
16
16
|
|
|
17
|
-
__version__ = "0.4.
|
|
17
|
+
__version__ = "0.4.6"
|
|
@@ -188,9 +188,9 @@ class AsyncLambdaController:
|
|
|
188
188
|
template["Resources"][logical_id] = resource
|
|
189
189
|
|
|
190
190
|
for extra_index, extra in enumerate(build_config.managed_queue_extras):
|
|
191
|
-
template["Resources"][
|
|
192
|
-
self.
|
|
193
|
-
|
|
191
|
+
template["Resources"][self._dlq_extra_logical_id(extra_index)] = (
|
|
192
|
+
self._dlq_extras_replace_references(extra)
|
|
193
|
+
)
|
|
194
194
|
|
|
195
195
|
if has_api_tasks:
|
|
196
196
|
properties: dict = {
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{async-lambda-unstable-0.4.5 → async-lambda-unstable-0.4.6}/async_lambda/models/events/__init__.py
RENAMED
|
File without changes
|
{async-lambda-unstable-0.4.5 → async-lambda-unstable-0.4.6}/async_lambda/models/events/api_event.py
RENAMED
|
File without changes
|
{async-lambda-unstable-0.4.5 → async-lambda-unstable-0.4.6}/async_lambda/models/events/base_event.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{async-lambda-unstable-0.4.5 → async-lambda-unstable-0.4.6}/async_lambda/models/mock/mock_context.py
RENAMED
|
File without changes
|
{async-lambda-unstable-0.4.5 → async-lambda-unstable-0.4.6}/async_lambda/models/mock/mock_event.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|