src/api2/config/remotes.rs: fix variable name -> s/remote/id/

This commit is contained in:
Dietmar Maurer 2020-01-14 13:20:13 +01:00
parent d0187a51a9
commit 71805bb7ec
1 changed files with 4 additions and 4 deletions

View File

@ -61,17 +61,17 @@ impl SectionConfigData {
Ok(()) Ok(())
} }
pub fn lookup<T: DeserializeOwned>(&self, type_name: &str, remote: &str) -> Result<T, Error> { pub fn lookup<T: DeserializeOwned>(&self, type_name: &str, id: &str) -> Result<T, Error> {
let config = match self.sections.get(remote) { let config = match self.sections.get(id) {
Some((section_type_name, config)) => { Some((section_type_name, config)) => {
if type_name != section_type_name { if type_name != section_type_name {
bail!("got unexpected type '{}' for {} '{}'", section_type_name, type_name, remote); bail!("got unexpected type '{}' for {} '{}'", section_type_name, type_name, id);
} }
config config
} }
None => { None => {
bail!("no such {} '{}'", type_name, remote); bail!("no such {} '{}'", type_name, id);
} }
}; };