summaryrefslogtreecommitdiff
path: root/cli/factory.rs
diff options
context:
space:
mode:
authorBartek IwaƄczuk <biwanczuk@gmail.com>2024-01-31 23:18:14 +0100
committerGitHub <noreply@github.com>2024-01-31 23:18:14 +0100
commitfddbb018c1f2467eef49fdef46488337b869fc38 (patch)
treefa6cd8e75ebc879d4b4c4e2572bef6d940cfa57f /cli/factory.rs
parent95e4741f0008577097984752e8eb3960e68ff169 (diff)
chore: temporarily disable deprecation warnings (#22204)
Diffstat (limited to 'cli/factory.rs')
-rw-r--r--cli/factory.rs4
1 files changed, 3 insertions, 1 deletions
diff --git a/cli/factory.rs b/cli/factory.rs
index 6e340c3c0..32cb256a3 100644
--- a/cli/factory.rs
+++ b/cli/factory.rs
@@ -773,7 +773,9 @@ impl CliFactory {
self.feature_checker().clone(),
self.create_cli_main_worker_options()?,
self.options.node_ipc_fd(),
- self.options.disable_deprecated_api_warning,
+ // TODO(bartlomieju): temporarily disabled
+ // self.options.disable_deprecated_api_warning,
+ true,
self.options.verbose_deprecated_api_warning,
))
}