Skip to content

Commit abcbbee

Browse files
Remove LDP acronym from default-python template (#3487)
Based on post merge comments in #3476
1 parent c90a6e2 commit abcbbee

File tree

8 files changed

+9
-9
lines changed

8 files changed

+9
-9
lines changed

acceptance/bundle/help/bundle-init/output.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Initialize using a bundle template to get started quickly.
44

55
TEMPLATE_PATH optionally specifies which template to use. It can be one of the following:
6-
- default-python: The default Python template for Notebooks / Lakeflow Declarative Pipelines / Workflows
6+
- default-python: The default Python template for Notebooks and Lakeflow
77
- default-sql: The default SQL template for .sql files that run with Databricks SQL
88
- dbt-sql: The dbt SQL template (databricks.com/blog/delivering-cost-effective-data-real-time-dbt-and-databricks)
99
- mlops-stacks: The Databricks MLOps Stacks template (github.com/databricks/mlops-stacks)

acceptance/bundle/templates/default-python/classic/output/my_default_python/src/pipeline.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"source": [
1515
"# Lakeflow Declarative Pipeline\n",
1616
"\n",
17-
"This Lakeflow Declarative Pipeline (LDP) definition is executed using a pipeline defined in resources/my_default_python.pipeline.yml."
17+
"This Lakeflow Declarative Pipeline definition is executed using a pipeline defined in resources/my_default_python.pipeline.yml."
1818
]
1919
},
2020
{

acceptance/bundle/templates/default-python/serverless/output/my_default_python/src/pipeline.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"source": [
1515
"# Lakeflow Declarative Pipeline\n",
1616
"\n",
17-
"This Lakeflow Declarative Pipeline (LDP) definition is executed using a pipeline defined in resources/my_default_python.pipeline.yml."
17+
"This Lakeflow Declarative Pipeline definition is executed using a pipeline defined in resources/my_default_python.pipeline.yml."
1818
]
1919
},
2020
{

acceptance/bundle/templates/experimental-jobs-as-code/output/my_jobs_as_code/src/dlt_pipeline.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"source": [
1515
"# DLT pipeline\n",
1616
"\n",
17-
"This Lakeflow Declarative Pipeline (LDP) definition is executed using a pipeline defined in resources/my_jobs_as_code.pipeline.yml."
17+
"This Lakeflow Declarative Pipeline definition is executed using a pipeline defined in resources/my_jobs_as_code.pipeline.yml."
1818
]
1919
},
2020
{

libs/template/template.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ const (
3838
var databricksTemplates = []Template{
3939
{
4040
name: DefaultPython,
41-
description: "The default Python template for Notebooks / Lakeflow Declarative Pipelines / Workflows",
41+
description: "The default Python template for Notebooks and Lakeflow",
4242
Reader: &builtinReader{name: string(DefaultPython)},
4343
Writer: &writerWithFullTelemetry{defaultWriter: defaultWriter{name: DefaultPython}},
4444
},

libs/template/template_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
)
99

1010
func TestTemplateHelpDescriptions(t *testing.T) {
11-
expected := `- default-python: The default Python template for Notebooks / Lakeflow Declarative Pipelines / Workflows
11+
expected := `- default-python: The default Python template for Notebooks and Lakeflow
1212
- default-sql: The default SQL template for .sql files that run with Databricks SQL
1313
- dbt-sql: The dbt SQL template (databricks.com/blog/delivering-cost-effective-data-real-time-dbt-and-databricks)
1414
- mlops-stacks: The Databricks MLOps Stacks template (github.com/databricks/mlops-stacks)
@@ -18,7 +18,7 @@ func TestTemplateHelpDescriptions(t *testing.T) {
1818

1919
func TestTemplateOptions(t *testing.T) {
2020
expected := []cmdio.Tuple{
21-
{Name: "default-python", Id: "The default Python template for Notebooks / Lakeflow Declarative Pipelines / Workflows"},
21+
{Name: "default-python", Id: "The default Python template for Notebooks and Lakeflow"},
2222
{Name: "default-sql", Id: "The default SQL template for .sql files that run with Databricks SQL"},
2323
{Name: "dbt-sql", Id: "The dbt SQL template (databricks.com/blog/delivering-cost-effective-data-real-time-dbt-and-databricks)"},
2424
{Name: "mlops-stacks", Id: "The Databricks MLOps Stacks template (github.com/databricks/mlops-stacks)"},

libs/template/templates/default-python/template/{{.project_name}}/src/pipeline.ipynb.tmpl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"source": [
1515
"# Lakeflow Declarative Pipeline\n",
1616
"\n",
17-
"This Lakeflow Declarative Pipeline (LDP) definition is executed using a pipeline defined in resources/{{.project_name}}.pipeline.yml."
17+
"This Lakeflow Declarative Pipeline definition is executed using a pipeline defined in resources/{{.project_name}}.pipeline.yml."
1818
]
1919
},
2020
{

libs/template/templates/experimental-jobs-as-code/template/{{.project_name}}/src/dlt_pipeline.ipynb.tmpl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"source": [
1515
"# DLT pipeline\n",
1616
"\n",
17-
"This Lakeflow Declarative Pipeline (LDP) definition is executed using a pipeline defined in resources/{{.project_name}}.pipeline.yml."
17+
"This Lakeflow Declarative Pipeline definition is executed using a pipeline defined in resources/{{.project_name}}.pipeline.yml."
1818
]
1919
},
2020
{

0 commit comments

Comments
 (0)