From 740c09beb9e7f83de4bfa6cb4e3ba6655f08fcc3 Mon Sep 17 00:00:00 2001 From: Zhaofeng Li Date: Sat, 14 Jan 2023 23:55:10 -0700 Subject: [PATCH] client/push: Change the default number of jobs to 5 --- client/src/command/push.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/command/push.rs b/client/src/command/push.rs index a38482a..95c1039 100644 --- a/client/src/command/push.rs +++ b/client/src/command/push.rs @@ -39,7 +39,7 @@ pub struct Push { ignore_upstream_cache_filter: bool, /// The maximum number of parallel upload processes. - #[clap(short = 'j', long, default_value = "10")] + #[clap(short = 'j', long, default_value = "5")] jobs: usize, }