config load: Move mistrust checking to load()
2 unresolved threads
2 unresolved threads
As per #472 (closed)
Experimentation convinced me the Mistrust should be within the ConfigurationSources.
Merge request reports
Activity
requested review from @nickm
assigned to @Diziet
66 68 files: Vec<(PathBuf, MustRead)>, 67 69 /// A list of command-line options to apply after parsing the files. 68 70 options: Vec<String>, 71 /// We will check all files we read 72 mistrust: fs_mistrust::Mistrust, 182 189 /// builder. 183 190 fn add_sources<P>( 184 191 mut builder: ConfigBuilder, 192 mistrust: &fs_mistrust::Mistrust, 185 193 files: &[(P, MustRead)], 186 194 opts: &[String], 187 ) -> ConfigBuilder 195 ) -> Result<ConfigBuilder, ConfigError> 188 196 where 189 197 P: AsRef<Path>, 190 198 { 191 199 for (path, must_read) in files { 192 200 // Not going to use File::with_name here, since it doesn't changed this line in version 3 of the diff
added 28 commits
-
e4d4a15f...f0eac618 - 25 commits from branch
tpo/core:main
- 58c75342 - arti-bench: Disable all fs permissions (fs-mistrust) checks
- d7f84b92 - config load: Move mistrust checking to load()
- bdb7cb7a - Fix comment location
Toggle commit list-
e4d4a15f...f0eac618 - 25 commits from branch
enabled an automatic merge when the pipeline for bdb7cb7a succeeds
mentioned in commit 4115ce50
mentioned in issue #472 (closed)
Please register or sign in to reply