From 831681506d026b9aec89be60257556f1b5b0aaf4 Mon Sep 17 00:00:00 2001 From: Bob Weinand Date: Fri, 21 Jun 2024 19:41:41 +0200 Subject: [PATCH] Update remote-config/src/parse.rs Co-authored-by: Luc Vieillescazes --- remote-config/src/parse.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/remote-config/src/parse.rs b/remote-config/src/parse.rs index ae17b846c..b82a5446b 100644 --- a/remote-config/src/parse.rs +++ b/remote-config/src/parse.rs @@ -49,7 +49,7 @@ impl RemoteConfigPath { } "employee" => { if parts.len() != 4 { - anyhow::bail!("{} is employee and does not have exactly 5 parts", path); + anyhow::bail!("{} is employee and does not have exactly 4 parts", path); } RemoteConfigSource::Employee }