async-lambda-unstable 0.4.4__tar.gz → 0.4.5__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.4 → async-lambda-unstable-0.4.5}/PKG-INFO +1 -1
- {async-lambda-unstable-0.4.4 → async-lambda-unstable-0.4.5}/async_lambda/__init__.py +1 -1
- {async-lambda-unstable-0.4.4 → async-lambda-unstable-0.4.5}/async_lambda/controller.py +6 -0
- {async-lambda-unstable-0.4.4 → async-lambda-unstable-0.4.5}/async_lambda_unstable.egg-info/PKG-INFO +1 -1
- {async-lambda-unstable-0.4.4 → async-lambda-unstable-0.4.5}/README.md +0 -0
- {async-lambda-unstable-0.4.4 → async-lambda-unstable-0.4.5}/async_lambda/build_config.py +0 -0
- {async-lambda-unstable-0.4.4 → async-lambda-unstable-0.4.5}/async_lambda/cli.py +0 -0
- {async-lambda-unstable-0.4.4 → async-lambda-unstable-0.4.5}/async_lambda/client.py +0 -0
- {async-lambda-unstable-0.4.4 → async-lambda-unstable-0.4.5}/async_lambda/config.py +0 -0
- {async-lambda-unstable-0.4.4 → async-lambda-unstable-0.4.5}/async_lambda/defer.py +0 -0
- {async-lambda-unstable-0.4.4 → async-lambda-unstable-0.4.5}/async_lambda/env.py +0 -0
- {async-lambda-unstable-0.4.4 → async-lambda-unstable-0.4.5}/async_lambda/middleware.py +0 -0
- {async-lambda-unstable-0.4.4 → async-lambda-unstable-0.4.5}/async_lambda/models/__init__.py +0 -0
- {async-lambda-unstable-0.4.4 → async-lambda-unstable-0.4.5}/async_lambda/models/case_insensitive_dict.py +0 -0
- {async-lambda-unstable-0.4.4 → async-lambda-unstable-0.4.5}/async_lambda/models/events/__init__.py +0 -0
- {async-lambda-unstable-0.4.4 → async-lambda-unstable-0.4.5}/async_lambda/models/events/api_event.py +0 -0
- {async-lambda-unstable-0.4.4 → async-lambda-unstable-0.4.5}/async_lambda/models/events/base_event.py +0 -0
- {async-lambda-unstable-0.4.4 → async-lambda-unstable-0.4.5}/async_lambda/models/events/dynamodb_event.py +0 -0
- {async-lambda-unstable-0.4.4 → async-lambda-unstable-0.4.5}/async_lambda/models/events/managed_sqs_event.py +0 -0
- {async-lambda-unstable-0.4.4 → async-lambda-unstable-0.4.5}/async_lambda/models/events/scheduled_event.py +0 -0
- {async-lambda-unstable-0.4.4 → async-lambda-unstable-0.4.5}/async_lambda/models/events/unmanaged_sqs_event.py +0 -0
- {async-lambda-unstable-0.4.4 → async-lambda-unstable-0.4.5}/async_lambda/models/mock/mock_context.py +0 -0
- {async-lambda-unstable-0.4.4 → async-lambda-unstable-0.4.5}/async_lambda/models/mock/mock_event.py +0 -0
- {async-lambda-unstable-0.4.4 → async-lambda-unstable-0.4.5}/async_lambda/models/task.py +0 -0
- {async-lambda-unstable-0.4.4 → async-lambda-unstable-0.4.5}/async_lambda/py.typed +0 -0
- {async-lambda-unstable-0.4.4 → async-lambda-unstable-0.4.5}/async_lambda/util.py +0 -0
- {async-lambda-unstable-0.4.4 → async-lambda-unstable-0.4.5}/async_lambda_unstable.egg-info/SOURCES.txt +0 -0
- {async-lambda-unstable-0.4.4 → async-lambda-unstable-0.4.5}/async_lambda_unstable.egg-info/dependency_links.txt +0 -0
- {async-lambda-unstable-0.4.4 → async-lambda-unstable-0.4.5}/async_lambda_unstable.egg-info/entry_points.txt +0 -0
- {async-lambda-unstable-0.4.4 → async-lambda-unstable-0.4.5}/async_lambda_unstable.egg-info/requires.txt +0 -0
- {async-lambda-unstable-0.4.4 → async-lambda-unstable-0.4.5}/async_lambda_unstable.egg-info/top_level.txt +0 -0
- {async-lambda-unstable-0.4.4 → async-lambda-unstable-0.4.5}/pyproject.toml +0 -0
- {async-lambda-unstable-0.4.4 → async-lambda-unstable-0.4.5}/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.5"
|
|
@@ -377,6 +377,12 @@ class AsyncLambdaController:
|
|
|
377
377
|
destination_task_id: str,
|
|
378
378
|
force_sync: bool,
|
|
379
379
|
) -> dict:
|
|
380
|
+
if self.parent_controller is not None:
|
|
381
|
+
return self.parent_controller.new_payload(
|
|
382
|
+
payload=payload,
|
|
383
|
+
destination_task_id=destination_task_id,
|
|
384
|
+
force_sync=force_sync,
|
|
385
|
+
)
|
|
380
386
|
if self.current_invocation_id is None:
|
|
381
387
|
invocation_id = str(uuid4())
|
|
382
388
|
else:
|
|
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.4 → async-lambda-unstable-0.4.5}/async_lambda/models/events/__init__.py
RENAMED
|
File without changes
|
{async-lambda-unstable-0.4.4 → async-lambda-unstable-0.4.5}/async_lambda/models/events/api_event.py
RENAMED
|
File without changes
|
{async-lambda-unstable-0.4.4 → async-lambda-unstable-0.4.5}/async_lambda/models/events/base_event.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{async-lambda-unstable-0.4.4 → async-lambda-unstable-0.4.5}/async_lambda/models/mock/mock_context.py
RENAMED
|
File without changes
|
{async-lambda-unstable-0.4.4 → async-lambda-unstable-0.4.5}/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
|