From fdcb2f8931b3231a2bde3d2d35c03f4b08508c28 Mon Sep 17 00:00:00 2001 From: Riccardo Busetti Date: Thu, 2 Jan 2025 16:29:27 +0100 Subject: [PATCH 1/2] ref(spooler): Remove the spool command --- relay/src/cliapp.rs | 32 -------------------------------- 1 file changed, 32 deletions(-) diff --git a/relay/src/cliapp.rs b/relay/src/cliapp.rs index f9ad7e7f78..aac6fe8444 100644 --- a/relay/src/cliapp.rs +++ b/relay/src/cliapp.rs @@ -306,36 +306,4 @@ pub fn make_app() -> Command { ), ), ) - .subcommand( - Command::new("spool") - .about("Manage the spool file") - .after_help( - "This comand provides basic spool management. \ - It can be used for checking spooled data, cleaning up the spool file." - ) - .subcommand_required(true) - .subcommand( - Command::new("clear") - .about("Remove the spooled data from the spool file") - .after_help( - "This deletes all the spooled on-disk data." - ) - .arg( - Arg::new("path") - .short('p') - .long("path") - .help( - "Path to the spool file. \ - This option overwrites the value from the config file." - ) - ) - .arg( - Arg::new("force") - .short('f') - .long("force") - .help("Run without confirmation") - .action(clap::ArgAction::SetTrue) - ) - ) - ) } From 826ec7fb3f4dd77ae996ab695ad783c3f7fe851c Mon Sep 17 00:00:00 2001 From: Riccardo Busetti Date: Thu, 2 Jan 2025 16:31:44 +0100 Subject: [PATCH 2/2] Add changelog entry --- CHANGELOG.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9e80df94e1..35c0d1e8f5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## Unreleased + +**Internal**: + +- Remove the `spool` command from Relay. ([#4423](https://github.com/getsentry/relay/pull/4423)) + ## 24.12.1 **Bug Fixes**: