async-lambda-unstable 0.6.8__tar.gz → 0.6.9__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.6.8 → async_lambda_unstable-0.6.9}/PKG-INFO +1 -1
- {async_lambda_unstable-0.6.8 → async_lambda_unstable-0.6.9}/async_lambda/__init__.py +1 -1
- {async_lambda_unstable-0.6.8 → async_lambda_unstable-0.6.9}/async_lambda/controller.py +2 -1
- {async_lambda_unstable-0.6.8 → async_lambda_unstable-0.6.9}/.gitignore +0 -0
- {async_lambda_unstable-0.6.8 → async_lambda_unstable-0.6.9}/README.md +0 -0
- {async_lambda_unstable-0.6.8 → async_lambda_unstable-0.6.9}/async_lambda/build_config.py +0 -0
- {async_lambda_unstable-0.6.8 → async_lambda_unstable-0.6.9}/async_lambda/cli.py +0 -0
- {async_lambda_unstable-0.6.8 → async_lambda_unstable-0.6.9}/async_lambda/client.py +0 -0
- {async_lambda_unstable-0.6.8 → async_lambda_unstable-0.6.9}/async_lambda/config.py +0 -0
- {async_lambda_unstable-0.6.8 → async_lambda_unstable-0.6.9}/async_lambda/defer.py +0 -0
- {async_lambda_unstable-0.6.8 → async_lambda_unstable-0.6.9}/async_lambda/env.py +0 -0
- {async_lambda_unstable-0.6.8 → async_lambda_unstable-0.6.9}/async_lambda/middleware.py +0 -0
- {async_lambda_unstable-0.6.8 → async_lambda_unstable-0.6.9}/async_lambda/models/__init__.py +0 -0
- {async_lambda_unstable-0.6.8 → async_lambda_unstable-0.6.9}/async_lambda/models/api_response.py +0 -0
- {async_lambda_unstable-0.6.8 → async_lambda_unstable-0.6.9}/async_lambda/models/case_insensitive_dict.py +0 -0
- {async_lambda_unstable-0.6.8 → async_lambda_unstable-0.6.9}/async_lambda/models/events/__init__.py +0 -0
- {async_lambda_unstable-0.6.8 → async_lambda_unstable-0.6.9}/async_lambda/models/events/api_event.py +0 -0
- {async_lambda_unstable-0.6.8 → async_lambda_unstable-0.6.9}/async_lambda/models/events/base_event.py +0 -0
- {async_lambda_unstable-0.6.8 → async_lambda_unstable-0.6.9}/async_lambda/models/events/dynamodb_event.py +0 -0
- {async_lambda_unstable-0.6.8 → async_lambda_unstable-0.6.9}/async_lambda/models/events/managed_sqs_batch_event.py +0 -0
- {async_lambda_unstable-0.6.8 → async_lambda_unstable-0.6.9}/async_lambda/models/events/managed_sqs_event.py +0 -0
- {async_lambda_unstable-0.6.8 → async_lambda_unstable-0.6.9}/async_lambda/models/events/scheduled_event.py +0 -0
- {async_lambda_unstable-0.6.8 → async_lambda_unstable-0.6.9}/async_lambda/models/events/unmanaged_sqs_event.py +0 -0
- {async_lambda_unstable-0.6.8 → async_lambda_unstable-0.6.9}/async_lambda/models/mock/mock_context.py +0 -0
- {async_lambda_unstable-0.6.8 → async_lambda_unstable-0.6.9}/async_lambda/models/mock/mock_event.py +0 -0
- {async_lambda_unstable-0.6.8 → async_lambda_unstable-0.6.9}/async_lambda/models/task.py +0 -0
- {async_lambda_unstable-0.6.8 → async_lambda_unstable-0.6.9}/async_lambda/payload_encoder.py +0 -0
- {async_lambda_unstable-0.6.8 → async_lambda_unstable-0.6.9}/async_lambda/py.typed +0 -0
- {async_lambda_unstable-0.6.8 → async_lambda_unstable-0.6.9}/async_lambda/util.py +0 -0
- {async_lambda_unstable-0.6.8 → async_lambda_unstable-0.6.9}/pyproject.toml +0 -0
|
@@ -21,4 +21,4 @@ from .models.events.managed_sqs_event import ManagedSQSEvent as ManagedSQSEvent
|
|
|
21
21
|
from .models.events.scheduled_event import ScheduledEvent as ScheduledEvent
|
|
22
22
|
from .models.events.unmanaged_sqs_event import UnmanagedSQSEvent as UnmanagedSQSEvent
|
|
23
23
|
|
|
24
|
-
__version__ = "0.6.
|
|
24
|
+
__version__ = "0.6.9"
|
|
@@ -915,6 +915,7 @@ class AsyncLambdaController:
|
|
|
915
915
|
force_sync=force_sync,
|
|
916
916
|
lane=lane,
|
|
917
917
|
message_group_id=message_group_id,
|
|
918
|
+
unique_delay_id=unique_delay_id,
|
|
918
919
|
)
|
|
919
920
|
is_external_task = False
|
|
920
921
|
if destination_task_id not in self.tasks:
|
|
@@ -1053,7 +1054,7 @@ class AsyncLambdaController:
|
|
|
1053
1054
|
}
|
|
1054
1055
|
|
|
1055
1056
|
get_scheduler_client().create_schedule(
|
|
1056
|
-
Name=schedule_name or uuid4(),
|
|
1057
|
+
Name=schedule_name or str(uuid4()),
|
|
1057
1058
|
GroupName=env.get_delay_schedule_group_name(),
|
|
1058
1059
|
ScheduleExpression=schedule_expression,
|
|
1059
1060
|
ScheduleExpressionTimezone="UTC",
|
|
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.6.8 → async_lambda_unstable-0.6.9}/async_lambda/models/api_response.py
RENAMED
|
File without changes
|
|
File without changes
|
{async_lambda_unstable-0.6.8 → async_lambda_unstable-0.6.9}/async_lambda/models/events/__init__.py
RENAMED
|
File without changes
|
{async_lambda_unstable-0.6.8 → async_lambda_unstable-0.6.9}/async_lambda/models/events/api_event.py
RENAMED
|
File without changes
|
{async_lambda_unstable-0.6.8 → async_lambda_unstable-0.6.9}/async_lambda/models/events/base_event.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{async_lambda_unstable-0.6.8 → async_lambda_unstable-0.6.9}/async_lambda/models/mock/mock_context.py
RENAMED
|
File without changes
|
{async_lambda_unstable-0.6.8 → async_lambda_unstable-0.6.9}/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
|