浏览代码

bug fix: cli arguments source

Steve Nyemba 3 年之前
父节点
当前提交
185158f006
共有 1 个文件被更改,包括 3 次插入2 次删除
  1. 3 2
      bin/transport

+ 3 - 2
bin/transport

@@ -84,10 +84,11 @@ class ETL (Process):
 			print (e)
 if __name__ == '__main__' :
 	_info = json.loads(open (SYS_ARGS['config']).read())
-	if 'source' in SYS_ARGS :
-		_info['source'] = {"type":"disk.DiskReader","args":{"path":SYS_ARGS['source'],"delimiter":","}}
 	
 	for _config in _info :
+		if 'source' in SYS_ARGS :
+			_config['source'] = {"type":"disk.DiskReader","args":{"path":SYS_ARGS['source'],"delimiter":","}}
+
 		_config['jobs']  = 10 if 'jobs' not in SYS_ARGS else SYS_ARGS['jobs']
 		etl = ETL (**_config)
 		etl.start()