From: Ian Jackson Date: Sun, 8 Aug 2021 01:45:09 +0000 (+0100) Subject: Revert "config: Deprecate quoted values" X-Git-Tag: hippotat/1.0.0~229 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ian/git?a=commitdiff_plain;h=6b9f8911b8d4b9f1c64693bda43fee13e40685e1;p=hippotat.git Revert "config: Deprecate quoted values" Actually, let's not. We might want this later. This reverts commit 994ef0004928a5fc4e1a00eec917ab8d88c8c55b. --- diff --git a/src/config.rs b/src/config.rs index 372c20d..3a45eb8 100644 --- a/src/config.rs +++ b/src/config.rs @@ -55,7 +55,7 @@ max_requests_outstanding = 6 max_batch_up = 4000 http_retry = 5 port = 80 -vroutes = +vroutes = '' ifname_client = hippo%d ifname_server = shippo%d max_clock_skew = 300 @@ -286,11 +286,6 @@ impl Aggregate { || anyhow!("mismatched quotes around quoted value") )? .to_owned(); - - eprintln!("warning: {}: \ - quoted values are deprecated; their meaning will change", - &loc); - Ok::<_,AE>(unq) })() .with_context(|| format!("key {:?}", key))