about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--src/cli.rs4
-rw-r--r--src/main.rs1
2 files changed, 0 insertions, 5 deletions
diff --git a/src/cli.rs b/src/cli.rs
index 34a98a6..ba92be3 100644
--- a/src/cli.rs
+++ b/src/cli.rs
@@ -94,10 +94,6 @@ pub enum Command {
         #[arg(short, long)]
         /// The subscriptions to update (can be given multiple times)
         subscriptions: Vec<String>,
-
-        #[arg(short, long, default_value = "6")]
-        /// How many processes to spawn at the same time
-        concurrent_processes: usize,
     },
 
     /// Manipulate subscription
diff --git a/src/main.rs b/src/main.rs
index 53cfc9e..3852b8e 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -82,7 +82,6 @@ async fn main() -> Result<()> {
         Command::Update {
             max_backlog,
             subscriptions,
-            concurrent_processes,
         } => {
             let all_subs = get_subscriptions(&app).await?;