Skip to content

Commit

Permalink
Avoid updating sync progress table if unneeded
Browse files Browse the repository at this point in the history
  • Loading branch information
geoffxy committed Oct 23, 2024
1 parent b38406c commit a0c617f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/brad/admin/bulk_load.py
Original file line number Diff line number Diff line change
Expand Up @@ -497,7 +497,7 @@ def load_tasks_for_engine(
# Athena does not support transactions.

# Update the sync tables.
if Engine.Aurora in engines_filter:
if Engine.Aurora in engines_filter and not args.bare_aurora_tables:
await _update_sync_progress(
manifest, blueprint, engines.get_connection(Engine.Aurora)
)
Expand Down

0 comments on commit a0c617f

Please sign in to comment.