From 87cfd16e3bcb0d0b0d906d3a4b487434caf47a9d Mon Sep 17 00:00:00 2001 From: Steinthor Palsson Date: Wed, 29 May 2024 05:41:11 -0400 Subject: [PATCH] Default config.full_refresh also None --- dlt/pipeline/configuration.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlt/pipeline/configuration.py b/dlt/pipeline/configuration.py index cc1c7d0d89..235ba3485a 100644 --- a/dlt/pipeline/configuration.py +++ b/dlt/pipeline/configuration.py @@ -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."""