Removed redundant cache env variable & setting

This commit is contained in:
Dylan
2022-09-13 00:17:52 +01:00
parent 831a6b45c8
commit 7d0c057a4a
3 changed files with 3 additions and 4 deletions

View File

@ -9,7 +9,7 @@ link_cache_system = config['config']['link_cache']
DYNAMO_CACHE_TBL=None
if link_cache_system=="dynamodb":
DYNAMO_CACHE_TBL=os.environ['CACHE_TABLE']
DYNAMO_CACHE_TBL=config['config']['table']
if link_cache_system == "json":
link_cache = {}