bug fix: etl & logger

v2.4
Steve Nyemba 2 months ago
parent 329a575f89
commit 93537095a4

@ -277,18 +277,17 @@ class IETL(BaseIO) :
writer = _args['writer']
_schema= _args['schema']
for _item in _schema :
if _item['type'] == 'INTEGER' :
_data.loc[:,_item['name']] = _data[_item['name']].copy().astype(np.int64)
writer.write(_data,schema=_schema)
#
# -- things to log
_input = {'shape':_shape,'segment':_index}
if hasattr(writer._agent,'_table'):
_input['table'] = writer._agent._table
except Exception as e:
writer.write(_data,schema=_schema)
except Exception as e:
_action = 'post-error'
_input['error'] = str(e)
print ([e])
pass

Loading…
Cancel
Save