mirror of https://github.com/databricks/cli.git
Push deployment state right after files upload (#1293)
## Changes Push deployment state right after files upload ## Tests Integration tests succeed
This commit is contained in:
parent
7c4b34945c
commit
de89af6f8c
|
@ -32,6 +32,7 @@ func Deploy() bundle.Mutator {
|
||||||
python.TransformWheelTask(),
|
python.TransformWheelTask(),
|
||||||
files.Upload(),
|
files.Upload(),
|
||||||
deploy.StateUpdate(),
|
deploy.StateUpdate(),
|
||||||
|
deploy.StatePush(),
|
||||||
permissions.ApplyWorkspaceRootPermissions(),
|
permissions.ApplyWorkspaceRootPermissions(),
|
||||||
terraform.Interpolate(),
|
terraform.Interpolate(),
|
||||||
terraform.Write(),
|
terraform.Write(),
|
||||||
|
@ -40,7 +41,6 @@ func Deploy() bundle.Mutator {
|
||||||
terraform.Apply(),
|
terraform.Apply(),
|
||||||
bundle.Seq(
|
bundle.Seq(
|
||||||
terraform.StatePush(),
|
terraform.StatePush(),
|
||||||
deploy.StatePush(),
|
|
||||||
terraform.Load(),
|
terraform.Load(),
|
||||||
metadata.Compute(),
|
metadata.Compute(),
|
||||||
metadata.Upload(),
|
metadata.Upload(),
|
||||||
|
|
Loading…
Reference in New Issue