From 8542339896217bda5ebbdee7b8265249b6001da9 Mon Sep 17 00:00:00 2001 From: Trevor McMaster Date: Tue, 31 Oct 2023 10:42:27 -0600 Subject: [PATCH] Added message to todo! so we can find it if it ever throws --- lib/config/src/configv2/templating.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/config/src/configv2/templating.rs b/lib/config/src/configv2/templating.rs index 51e3d9eb..8d41bf67 100644 --- a/lib/config/src/configv2/templating.rs +++ b/lib/config/src/configv2/templating.rs @@ -97,7 +97,7 @@ where } => template, Template::PreVars { template, .. } => template, // probably won't be needed, as serialization is done with `` templates. - Template::NeedsProviders { .. } => todo!(), + Template::NeedsProviders { .. } => todo!("TemplatedString FromStr NeedsProviders todo"), } } }