From 3f003c97bb4579f17534c0ac8cd8a7d4836fc9ad Mon Sep 17 00:00:00 2001 From: Alek Westover Date: Thu, 13 Jul 2023 13:46:59 -0400 Subject: [PATCH] satisfy clippy --- compute_tools/src/bin/compute_ctl.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compute_tools/src/bin/compute_ctl.rs b/compute_tools/src/bin/compute_ctl.rs index 293e9725f6..287bdb6065 100644 --- a/compute_tools/src/bin/compute_ctl.rs +++ b/compute_tools/src/bin/compute_ctl.rs @@ -77,7 +77,7 @@ fn main() -> Result<()> { // r#"{"bucket": "neon-dev-extensions-us-east-2", "region": "us-east-2", "endpoint": null, "prefix": "5412197734"}"#.to_string(), // ); let ext_remote_storage = remote_ext_config.map(|x| { - init_remote_storage(&x, build_tag) + init_remote_storage(x, build_tag) .expect("cannot initialize remote extension storage from config") });