Steve Nyemba 4 лет назад
Родитель
Сommit
6e2ee941ac
1 измененных файлов с 3 добавлено и 2 удалено
  1. 3 2
      bin/transport

+ 3 - 2
bin/transport

@@ -83,9 +83,10 @@ class ETL (Process):
 		except Exception as e:
 			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']
+	_info = json.loads(open (SYS_ARGS['config']).read())
+	
 	
 	for _config in _info :
+		_config['jobs']  = 10 if 'jobs' not in SYS_ARGS else SYS_ARGS['jobs']
 		etl = ETL (**_config)
 		etl.start()