removed api key from debug log as it is easy to create a new one

This commit is contained in:
2023-04-02 13:43:54 -04:00
parent 20d6b44f6c
commit 5f7e60e220

View File

@@ -424,8 +424,7 @@ if __name__ == '__main__':
sys.exit(-1)
# run the decryption of the keys and unlock the pool
config = read_config_file(secrets_config_file)
api_key = config['API Key']
logger.debug("API Key: {}".format(api_key))
api_key = config['API Key']
API_POOLS = request('pool', api_key)['response']
API_DATASETS = request('pool/dataset', api_key)['response']
for pool_dataset_name in config['Pools']: