Skip to content

Commit

Permalink
Disable use_placeholder_dt in sgr singer target
Browse files Browse the repository at this point in the history
  • Loading branch information
mildbyte committed Oct 19, 2022
1 parent 76f5e31 commit 4e255c5
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions splitgraph/ingestion/singer/commandline/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,10 @@ def singer_target(image, delete_old, failure):
from splitgraph.ingestion.singer.db_sync import run_patched_sync

repository, hash_or_tag = image
base_image, new_image_hash = prepare_new_image(repository, hash_or_tag)
base_image, new_image_hash = prepare_new_image(
repository, hash_or_tag, use_placeholder_dt=False
)
run_patched_sync(repository, base_image, new_image_hash, delete_old, failure)
make_image_latest(repository, new_image_hash)


singer_group.add_command(singer_target)

0 comments on commit 4e255c5

Please sign in to comment.