Skip to content

Commit

Permalink
Default config.full_refresh also None
Browse files Browse the repository at this point in the history
  • Loading branch information
steinitzu committed May 29, 2024
1 parent 6a06449 commit 87cfd16
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dlt/pipeline/configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ class PipelineConfiguration(BaseConfiguration):
"""Enables the tracing. Tracing saves the execution trace locally and is required by `dlt deploy`."""
use_single_dataset: bool = True
"""Stores all schemas in single dataset. When False, each schema will get a separate dataset with `{dataset_name}_{schema_name}"""
full_refresh: bool = False
full_refresh: Optional[bool] = None
"""Deprecated. Use `dev_mode` instead. When set to True, each instance of the pipeline with the `pipeline_name` starts from scratch when run and loads the data to a separate dataset."""
dev_mode: bool = False
"""When set to True, each instance of the pipeline with the `pipeline_name` starts from scratch when run and loads the data to a separate dataset."""
Expand Down

0 comments on commit 87cfd16

Please sign in to comment.