You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
sync: rename flag to --concurrency and extend to bundle sync
Match the name of `fs cp --concurrency` (#4132) for consistency, and
expose the same flag on `databricks bundle sync` so both sync entry
points are tunable.
Co-authored-by: Isaac
cmd.Flags().StringVar(&f.excludeFrom, "exclude-from", "", "file containing patterns to exclude from sync (one pattern per line)")
198
200
cmd.Flags().StringVar(&f.includeFrom, "include-from", "", "file containing patterns to include to sync (one pattern per line)")
199
201
cmd.Flags().BoolVar(&f.dryRun, "dry-run", false, "simulate sync execution without making actual changes")
200
-
cmd.Flags().IntVar(&f.maxConcurrentRequests, "max-concurrent-requests", sync.MaxRequestsInFlight, "maximum number of concurrent requests to the workspace")
202
+
cmd.Flags().IntVar(&f.concurrency, "concurrency", sync.MaxRequestsInFlight, "number of parallel requests to the workspace")
201
203
202
204
// Wrapper for [root.MustWorkspaceClient] that disables loading authentication configuration from a bundle.
0 commit comments