From 81586c23cfa7eee08fc896984557990d71c05eb7 Mon Sep 17 00:00:00 2001 From: Andrea Campi Date: Mon, 25 Nov 2024 07:03:03 -0800 Subject: [PATCH] Remove legacy command-line flag Summary: ## This stack Every client is now using the async version of `commit_sparse_profile_*`; clean up the sync ones. ## This diff As of D66297353 this flag does nothing, and as of D66448545 no job sets it. Reviewed By: clara-9 Differential Revision: D66448556 fbshipit-source-id: d706f9bb8515089d0a6b273def4722fff70b71ab --- eden/mononoke/scs/scs_server/src/main.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/eden/mononoke/scs/scs_server/src/main.rs b/eden/mononoke/scs/scs_server/src/main.rs index 640da87424395..9773f4bb71e78 100644 --- a/eden/mononoke/scs/scs_server/src/main.rs +++ b/eden/mononoke/scs/scs_server/src/main.rs @@ -121,9 +121,6 @@ struct ScsServerArgs { /// Some long-running requests are processed asynchronously by default. This flag disables that behavior; requests will fail. #[clap(long, default_value = "false")] disable_async_requests: bool, - /// Unused, will go away soon - #[clap(long, default_value = "false")] - enable_futures_watchdog: bool, /// Sets the threshold for watchdog logging of top-level SCS methods. As a rule of thumb this should the same or lower than thrift_queue_timeout. #[clap(long, default_value = "500")] watchdog_method_max_poll: u64,