From 25ed547474db456c22341f8a32c3328c88cbd1d8 Mon Sep 17 00:00:00 2001 From: Steve Nyemba Date: Thu, 8 Jul 2021 17:37:35 -0500 Subject: [PATCH] bug fix --- bin/transport | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/transport b/bin/transport index 9f016e4..e0baf2f 100644 --- a/bin/transport +++ b/bin/transport @@ -84,7 +84,7 @@ class ETL (Process): print (e) if __name__ == '__main__' : _config = json.loads(open (SYS_ARGS['config']).read()) - _config['jobs'] = 10 if 'jobs' not in SYS_ARGS else SYS_ARGS['jobs'] + _config['jobs'] = 10 #if 'jobs' not in SYS_ARGS else SYS_ARGS['jobs'] for _config in _info : etl = ETL (**_config)