fix: config merging

Embarrassingly, settings from the newly implemented config file where not being correctly applied. This *should* now be fixed.
Change the show standard error default to true
This commit is contained in:
Jack Wills
2025-04-16 15:16:16 +00:00
parent 9362d7b481
commit a468827f02
8 changed files with 63 additions and 44 deletions
+1 -1
View File
@@ -36,7 +36,7 @@ impl ContainerId {
/// Only return first 8 chars of id, is usually more than enough for uniqueness
/// TODO container id is a hex string, so can assume that 0..=8 will always return a 8 char ascii &str
/// need to update tests to use real ids, or atleast strings of the correct-ish length
/// need to update tests to use real ids, or atleast strings of the correct-ish length
pub fn get_short(&self) -> String {
self.0.chars().take(8).collect::<String>()
}