Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ Ignore = [
'*.whl',
]

[[Repls]]
Old = 'Updating deployment state...\n'
Copy link
Copy Markdown
Contributor

@denik denik Mar 27, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

When I said we should not have this difference I meant it should not be printed in the first place, not that we should hide it :)

New = ''

[[Server]]
Pattern = "GET /api/2.1/clusters/get"
Response.Body = '''
Expand Down
4 changes: 4 additions & 0 deletions acceptance/bundle/artifacts/build_and_files_whl/test.toml
Original file line number Diff line number Diff line change
@@ -1 +1,5 @@
RecordRequests = false

[[Repls]]
Old = 'Updating deployment state...\n'
New = ''
4 changes: 4 additions & 0 deletions acceptance/bundle/artifacts/shell/test.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
Local = true
Cloud = false
RecordRequests = false

[[Repls]]
Old = 'Updating deployment state...\n'
New = ''
4 changes: 4 additions & 0 deletions acceptance/bundle/deploy/empty-bundle/test.toml
Original file line number Diff line number Diff line change
@@ -1 +1,5 @@
Cloud=true

[[Repls]]
Old = 'Updating deployment state...\n'
New = ''
117 changes: 117 additions & 0 deletions acceptance/bundle/deploy/wal/chain-10-jobs/databricks.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,117 @@
bundle:
name: wal-chain-test

resources:
jobs:
# Linear chain: job_01 -> job_02 -> ... -> job_10
# Execution order: job_01 first, job_10 last
job_01:
name: "job-01"
description: "first in chain"
tasks:
- task_key: "task"
spark_python_task:
python_file: ./test.py
new_cluster:
spark_version: 15.4.x-scala2.12
node_type_id: i3.xlarge
num_workers: 0
job_02:
name: "job-02"
description: "depends on ${resources.jobs.job_01.id}"
tasks:
- task_key: "task"
spark_python_task:
python_file: ./test.py
new_cluster:
spark_version: 15.4.x-scala2.12
node_type_id: i3.xlarge
num_workers: 0
job_03:
name: "job-03"
description: "depends on ${resources.jobs.job_02.id}"
tasks:
- task_key: "task"
spark_python_task:
python_file: ./test.py
new_cluster:
spark_version: 15.4.x-scala2.12
node_type_id: i3.xlarge
num_workers: 0
job_04:
name: "job-04"
description: "depends on ${resources.jobs.job_03.id}"
tasks:
- task_key: "task"
spark_python_task:
python_file: ./test.py
new_cluster:
spark_version: 15.4.x-scala2.12
node_type_id: i3.xlarge
num_workers: 0
job_05:
name: "job-05"
description: "depends on ${resources.jobs.job_04.id}"
tasks:
- task_key: "task"
spark_python_task:
python_file: ./test.py
new_cluster:
spark_version: 15.4.x-scala2.12
node_type_id: i3.xlarge
num_workers: 0
job_06:
name: "job-06"
description: "depends on ${resources.jobs.job_05.id}"
tasks:
- task_key: "task"
spark_python_task:
python_file: ./test.py
new_cluster:
spark_version: 15.4.x-scala2.12
node_type_id: i3.xlarge
num_workers: 0
job_07:
name: "job-07"
description: "depends on ${resources.jobs.job_06.id}"
tasks:
- task_key: "task"
spark_python_task:
python_file: ./test.py
new_cluster:
spark_version: 15.4.x-scala2.12
node_type_id: i3.xlarge
num_workers: 0
job_08:
name: "job-08"
description: "depends on ${resources.jobs.job_07.id}"
tasks:
- task_key: "task"
spark_python_task:
python_file: ./test.py
new_cluster:
spark_version: 15.4.x-scala2.12
node_type_id: i3.xlarge
num_workers: 0
job_09:
name: "job-09"
description: "depends on ${resources.jobs.job_08.id}"
tasks:
- task_key: "task"
spark_python_task:
python_file: ./test.py
new_cluster:
spark_version: 15.4.x-scala2.12
node_type_id: i3.xlarge
num_workers: 0
job_10:
name: "job-10"
description: "depends on ${resources.jobs.job_09.id}"
tasks:
- task_key: "task"
spark_python_task:
python_file: ./test.py
new_cluster:
spark_version: 15.4.x-scala2.12
node_type_id: i3.xlarge
num_workers: 0
5 changes: 5 additions & 0 deletions acceptance/bundle/deploy/wal/chain-10-jobs/out.test.toml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading