bug fix: identifier filter
This commit is contained in:
parent
66f43a98c1
commit
7200be7beb
|
@ -65,6 +65,8 @@ if __name__ == '__main__' :
|
||||||
_index = int(SYS_ARGS['index'])
|
_index = int(SYS_ARGS['index'])
|
||||||
_info = [_item for _item in _info if _info.index(_item) == _index]
|
_info = [_item for _item in _info if _info.index(_item) == _index]
|
||||||
pass
|
pass
|
||||||
|
elif 'id' in SYS_ARGS :
|
||||||
|
_info = [_item for _item in _info if 'id' in _item and _item['id'] == SYS_ARGS['id']]
|
||||||
|
|
||||||
procs = 1 if 'procs' not in SYS_ARGS else int(SYS_ARGS['procs'])
|
procs = 1 if 'procs' not in SYS_ARGS else int(SYS_ARGS['procs'])
|
||||||
jobs = transport.factory.instance(provider='etl',info=_info,procs=procs)
|
jobs = transport.factory.instance(provider='etl',info=_info,procs=procs)
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -8,7 +8,7 @@ def read(fname):
|
||||||
return open(os.path.join(os.path.dirname(__file__), fname)).read()
|
return open(os.path.join(os.path.dirname(__file__), fname)).read()
|
||||||
args = {
|
args = {
|
||||||
"name":"data-transport",
|
"name":"data-transport",
|
||||||
"version":"1.6.8",
|
"version":"1.7.0",
|
||||||
"author":"The Phi Technology LLC","author_email":"info@the-phi.com",
|
"author":"The Phi Technology LLC","author_email":"info@the-phi.com",
|
||||||
"license":"MIT",
|
"license":"MIT",
|
||||||
"packages":["transport"]}
|
"packages":["transport"]}
|
||||||
|
|
Loading…
Reference in New Issue