From fa87f22706e2232a33d3a6acd6f3d352579dafad Mon Sep 17 00:00:00 2001 From: Andrew Nester Date: Thu, 16 Jan 2025 14:03:35 +0100 Subject: [PATCH] Changed warning message for apps (#2165) ## Changes Changed warning message for apps Original warning message added here: https://github.com/databricks/cli/pull/2161 --- bundle/apps/slow_deploy_message.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bundle/apps/slow_deploy_message.go b/bundle/apps/slow_deploy_message.go index 6eda39d81..87275980a 100644 --- a/bundle/apps/slow_deploy_message.go +++ b/bundle/apps/slow_deploy_message.go @@ -14,7 +14,7 @@ type slowDeployMessage struct{} // See https://github.com/databricks/cli/pull/2144 func (v *slowDeployMessage) Apply(ctx context.Context, b *bundle.Bundle) diag.Diagnostics { if len(b.Config.Resources.Apps) > 0 { - cmdio.LogString(ctx, "Databricks apps in your bundle can slow initial deployment as they wait for compute provisioning.") + cmdio.LogString(ctx, "Note: Databricks apps included in this bundle may increase initial deployment time due to compute provisioning.") } return nil