Skip to content

Commit

Permalink
#210: Remove client handling config options
Browse files Browse the repository at this point in the history
- These aren't in the current branch, they'll need to be added back when the client handling PR gets merged in
  • Loading branch information
MRichards99 committed Apr 20, 2021
1 parent 1cb1003 commit 01ab8e1
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions datagateway_api/common/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,6 @@ class APIConfigOptions(Enum):
"""

BACKEND = "backend"
CLIENT_CACHE_SIZE = "client_cache_size"
CLIENT_POOL_INIT_SIZE = "client_pool_init_size"
CLIENT_POOL_MAX_SIZE = "client_pool_max_size"
DB_URL = "db_url"
DEBUG_MODE = "debug_mode"
FLASK_RELOADER = "flask_reloader"
Expand Down Expand Up @@ -68,9 +65,6 @@ def _check_config_items_exist(self):

if self.get_config_value(APIConfigOptions.BACKEND) == "python_icat":
icat_backend_specific_config_keys = [
APIConfigOptions.CLIENT_CACHE_SIZE,
APIConfigOptions.CLIENT_POOL_INIT_SIZE,
APIConfigOptions.CLIENT_POOL_MAX_SIZE,
APIConfigOptions.ICAT_CHECK_CERT,
APIConfigOptions.ICAT_URL,
]
Expand Down

0 comments on commit 01ab8e1

Please sign in to comment.