Skip to content

Commit

Permalink
Fixing reference for repl config
Browse files Browse the repository at this point in the history
  • Loading branch information
Jordan Mance committed Dec 10, 2022
1 parent 8e1f93c commit 4ba7d1c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from setuptools import setup, find_packages

VERSION = '0.0.14'
VERSION = '0.0.15'
SHORT_DESCRIPTION = 'Shared code used between various figgy projects'
LONG_DESCRIPTION = 'This codebase is not needed for general figgy use. ' \
'This is maintained and used by the figgy creators.'
Expand Down
2 changes: 1 addition & 1 deletion src/figgy/data/dao/replication.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ def put_config_repl(self, config: ReplicationConfig) -> None:
config: ReplicationConfig -> a hydrated replication config object.
"""
item = config.dict()
item['run_env'] = item['run_env']['env'] # Convert env to str for ddb model format.
item[REPL_RUN_ENV_KEY_NAME] = item['run_env']['env'] # Convert env to str for ddb model format.

self._config_repl_table.put_item(Item=item)

Expand Down

0 comments on commit 4ba7d1c

Please sign in to comment.