From 52a7d780ad513d46da53257457e01255f4572abe Mon Sep 17 00:00:00 2001 From: Conrad Ludgate Date: Fri, 4 Oct 2024 10:32:18 +0100 Subject: [PATCH] test --- Cargo.lock | 1 - compute_tools/Cargo.toml | 2 +- compute_tools/src/lib.rs | 2 +- libs/compute_api/src/spec.rs | 1 + 4 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 6108549660..419276f543 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1265,7 +1265,6 @@ version = "0.1.0" dependencies = [ "anyhow", "bytes", - "camino", "cfg-if", "chrono", "clap", diff --git a/compute_tools/Cargo.toml b/compute_tools/Cargo.toml index 91e0b9d5b8..8174b3bd71 100644 --- a/compute_tools/Cargo.toml +++ b/compute_tools/Cargo.toml @@ -11,7 +11,7 @@ testing = [] [dependencies] anyhow.workspace = true -camino.workspace = true +# camino.workspace = true chrono.workspace = true cfg-if.workspace = true clap.workspace = true diff --git a/compute_tools/src/lib.rs b/compute_tools/src/lib.rs index 477f423aa2..fb911a1d92 100644 --- a/compute_tools/src/lib.rs +++ b/compute_tools/src/lib.rs @@ -15,7 +15,7 @@ pub mod catalog; pub mod compute; pub mod disk_quota; pub mod extension_server; -pub mod local_proxy; +// pub mod local_proxy; pub mod lsn_lease; mod migration; pub mod monitor; diff --git a/libs/compute_api/src/spec.rs b/libs/compute_api/src/spec.rs index f6e4c3b944..b2f27f6d1f 100644 --- a/libs/compute_api/src/spec.rs +++ b/libs/compute_api/src/spec.rs @@ -109,6 +109,7 @@ pub struct ComputeSpec { /// Local Proxy configuration used for JWT authentication #[serde(default)] + #[serde(skip_serializing_if = "Option::is_none")] pub local_proxy_config: Option, }