Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions data_processing_stack/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ def __init__(self, scope: core.Construct, id_: str,
lambda_fetch_properties = lambda_.Function(
self,
'FetchProperties',
code=lambda_.AssetCode('stack/lambda/fetch_properties/1.2.0/python/fetch_properties'),
code=lambda_.AssetCode('stack/lambda/fetch_properties/1.3.0/python/fetch_properties'),
timeout=core.Duration.seconds(10),
description='',
function_name='FetchProperties',
Expand Down Expand Up @@ -121,7 +121,7 @@ def __init__(self, scope: core.Construct, id_: str,
layer_fetch_properties = lambda_.LayerVersion(
self,
'FetchPropertiesLibs',
code=lambda_.Code.from_asset('stack/lambda/fetch_properties/1.2.0/'),
code=lambda_.Code.from_asset('stack/lambda/fetch_properties/1.3.0/'),
description='',
layer_version_name='FetchPropertiesLibs',
compatible_runtimes=[DEFAULT_LAMBDA_RUNTIME]
Expand Down
2 changes: 1 addition & 1 deletion data_processing_stack/dependencies.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,5 +35,5 @@ class Dependency:
DEPENDENCIES = [
Dependency(project_name='lambda-dispatch-stream', package_name='dispatch_stream', release_version='1.0.0'),
Dependency(project_name='lambda-geocode-property', package_name='geocode_property', release_version='1.1.3'),
Dependency(project_name='lambda-fetch-properties', package_name='fetch_properties', release_version='1.2.0')
Dependency(project_name='lambda-fetch-properties', package_name='fetch_properties', release_version='1.3.0')
]