Changed warning message for apps (#2165)

## Changes
Changed warning message for apps

Original warning message added here:
https://github.com/databricks/cli/pull/2161
This commit is contained in:
Andrew Nester 2025-01-16 14:03:35 +01:00 committed by GitHub
parent bc1610f6e6
commit fa87f22706
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -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