git.delta.rocks / jrsonnet / refs/commits / a1a72ceb9060

difftreelog

feat reenable indicatif, since the eaten line was fixed

Lach2025-03-29parent: #4e5d91e.patch.diff
in: trunk

3 files changed

modifiedcmds/fleet/Cargo.tomldiffbeforeafterboth
--- a/cmds/fleet/Cargo.toml
+++ b/cmds/fleet/Cargo.toml
@@ -49,6 +49,7 @@
 fleet-base = { version = "0.1.0", path = "../../crates/fleet-base" }
 
 [features]
+default = ["indicatif"]
 # Not quite stable
 indicatif = [
 	"dep:tracing-indicatif",
modifiedcmds/fleet/src/main.rsdiffbeforeafterboth
185#[tokio::main]185#[tokio::main]
186async fn async_main(opts: RootOpts) -> ExitCode {186async fn async_main(opts: RootOpts) -> ExitCode {
187 if let Err(e) = main_real(opts).await {187 if let Err(e) = main_real(opts).await {
188 // If I remove this line, the next error!() line gets eaten.
189 // This is a bug in indicatif, it needs to be fixed
190 #[cfg(feature = "indicatif")]
191 info!("fixme: this line gets eaten by tracing-indicatif on levels info+");
192 error!("{e:#}");188 error!("{e:#}");
193 return ExitCode::FAILURE;189 return ExitCode::FAILURE;
194 }190 }
modifiedcrates/fleet-base/src/opts.rsdiffbeforeafterboth
--- a/crates/fleet-base/src/opts.rs
+++ b/crates/fleet-base/src/opts.rs
@@ -6,7 +6,7 @@
 	sync::{Arc, Mutex},
 };
 
-use anyhow::Result;
+use anyhow::{Context, Result};
 use clap::Parser;
 use nix_eval::{nix_go, util::assert_warn, NixSessionPool, Value};
 use nom::{
@@ -196,7 +196,8 @@
 
 		let mut fleet_data_path = directory.clone();
 		fleet_data_path.push("fleet.nix");
-		let bytes = std::fs::read_to_string(fleet_data_path)?;
+		let bytes =
+			std::fs::read_to_string(fleet_data_path).context("reading fleet state (fleet.nix)")?;
 		let data: Mutex<FleetData> = nixlike::parse_str(&bytes)?;
 
 		let fleet_root = Value::binding(nix_session.clone(), "fleetConfigurations").await?;