impr(compute): Remove the deprecated CLI arg alias for remote-ext-config. (#12087)

Also moves it from `String` to `Url`.
This commit is contained in:
Shockingly Good
2025-05-30 19:45:24 +02:00
committed by GitHub
parent f6c0f6c4ec
commit f05df409bd
3 changed files with 7 additions and 6 deletions

View File

@@ -31,6 +31,7 @@ use std::time::{Duration, Instant};
use std::{env, fs};
use tokio::spawn;
use tracing::{Instrument, debug, error, info, instrument, warn};
use url::Url;
use utils::id::{TenantId, TimelineId};
use utils::lsn::Lsn;
use utils::measured_stream::MeasuredReader;
@@ -96,7 +97,7 @@ pub struct ComputeNodeParams {
pub internal_http_port: u16,
/// the address of extension storage proxy gateway
pub remote_ext_base_url: Option<String>,
pub remote_ext_base_url: Option<Url>,
/// Interval for installed extensions collection
pub installed_extensions_collection_interval: u64,