Skip to content

Commit

Permalink
fix error prefix
Browse files Browse the repository at this point in the history
  • Loading branch information
rymarczy committed Nov 8, 2024
1 parent 8a79735 commit 4e021ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cubic_loader/qlik/ods_qlik.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ def get_cdc_gz_csvs(etl_status: TableStatus, table: str) -> List[str]:
cdc_csvs = s3_list_cdc_gz_objects(S3_ARCHIVE, snapshot_prefix, min_ts=etl_status.last_cdc_ts)

# filter error files from table folder
for csv_file in s3_list_cdc_gz_objects(S3_ERROR, table, min_ts=etl_status.last_cdc_ts):
for csv_file in s3_list_cdc_gz_objects(S3_ERROR, table_prefix, min_ts=etl_status.last_cdc_ts):
if re_get_first(csv_file, RE_SNAPSHOT_TS) > etl_status.current_snapshot_ts:
cdc_csvs.append(csv_file)

Expand Down

0 comments on commit 4e021ef

Please sign in to comment.