Skip to content

Commit

Permalink
Merge pull request #3 from reloc8/minor/update-dependencies
Browse files Browse the repository at this point in the history
Update dependencies
  • Loading branch information
alessiovierti authored Feb 2, 2021
2 parents 2a280a3 + fc03969 commit e37caaf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions data_processing_stack/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ def __init__(self, scope: core.Construct, id_: str,
lambda_geocode_property = lambda_.Function(
self,
'GeocodeProperty',
code=lambda_.AssetCode('stack/lambda/geocode_property/1.1.0/python/geocode_property'),
code=lambda_.AssetCode('stack/lambda/geocode_property/1.1.3/python/geocode_property'),
timeout=core.Duration.seconds(15),
description='',
function_name='GeocodeProperty',
Expand Down Expand Up @@ -112,7 +112,7 @@ def __init__(self, scope: core.Construct, id_: str,
layer_geocode_property = lambda_.LayerVersion(
self,
'GeocodePropertyLibs',
code=lambda_.Code.from_asset('stack/lambda/geocode_property/1.1.0/'),
code=lambda_.Code.from_asset('stack/lambda/geocode_property/1.1.3/'),
description='',
layer_version_name='GeocodePropertyLibs',
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 @@ -34,6 +34,6 @@ 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.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.1.0')
]

0 comments on commit e37caaf

Please sign in to comment.