bug fix: identifier filter

This commit is contained in:
Steve Nyemba 2023-05-31 14:13:36 -05:00
parent 66f43a98c1
commit 7200be7beb
2 changed files with 3 additions and 1 deletions

View File

@ -65,6 +65,8 @@ if __name__ == '__main__' :
_index = int(SYS_ARGS['index'])
_info = [_item for _item in _info if _info.index(_item) == _index]
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'])
jobs = transport.factory.instance(provider='etl',info=_info,procs=procs)

View File

@ -8,7 +8,7 @@ def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
args = {
"name":"data-transport",
"version":"1.6.8",
"version":"1.7.0",
"author":"The Phi Technology LLC","author_email":"info@the-phi.com",
"license":"MIT",
"packages":["transport"]}