simple test DAG

This commit is contained in:
Giambattista Bloisi 2024-03-15 13:12:17 +01:00
parent 4c7d80a0a8
commit ab172a39ff
1 changed files with 1 additions and 1 deletions

View File

@ -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):