Skip to content

Commit

Permalink
Merge pull request #171 from sosw/0_7_27
Browse files Browse the repository at this point in the history
v0.7.27
  • Loading branch information
nimirium committed Nov 18, 2019
2 parents 1353225 + 1d9b992 commit 192b640
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
long_description = f.read()

setup(name='sosw',
version='0.7.25',
version='0.7.27',
description='Serverless Orchestrator of Serverless Workers',
long_description=long_description,
long_description_content_type="text/markdown",
Expand Down
1 change: 1 addition & 0 deletions sosw/components/dynamo_db.py
Original file line number Diff line number Diff line change
Expand Up @@ -844,6 +844,7 @@ def update(self, keys: Dict, attributes_to_update: Optional[Dict] = None,
if condition_expression:
expr, values = self._parse_filter_expression(condition_expression)
update_item_query['ConditionExpression'] = expr
update_item_query['ExpressionAttributeValues'] = update_item_query.get('ExpressionAttributeValues', {})
update_item_query['ExpressionAttributeValues'].update(values)

logger.debug(f"Updating an item, query: {update_item_query}")
Expand Down

0 comments on commit 192b640

Please sign in to comment.