simple test DAG
This commit is contained in:
parent
4c7d80a0a8
commit
ab172a39ff
|
@ -108,7 +108,7 @@ def skg_if_pipeline():
|
|||
hook = S3Hook(AWS_CONN_ID, transfer_config_args={'use_threads': False})
|
||||
keys = hook.list_keys(bucket_name=S3_BUCKET_NAME, prefix=f'{entity}/')
|
||||
for key in keys:
|
||||
pieces.append({entity, key})
|
||||
pieces.append((entity, key))
|
||||
|
||||
def split_list(list_a, chunk_size):
|
||||
for i in range(0, len(list_a), chunk_size):
|
||||
|
|
Loading…
Reference in New Issue