From 7ee55c293cc47a6b3bebacd4d991aa9aa9cc7287 Mon Sep 17 00:00:00 2001 From: Florian Klink Date: Thu, 13 Jun 2024 09:39:31 +0300 Subject: fix(tvix/glue/tvix_store_io): use same case for progress messages "Fetching" was uppercase, "building" was lowercase. Let's make this consistent. Change-Id: I11c16f1a7d2057ada4d057e553a4ceaa59597f26 Reviewed-on: https://cl.tvl.fyi/c/depot/+/11796 Autosubmit: flokli Reviewed-by: Ilan Joselevich Tested-by: BuildkiteCI Reviewed-by: flokli --- tvix/glue/src/tvix_store_io.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tvix/glue/src/tvix_store_io.rs b/tvix/glue/src/tvix_store_io.rs index b59d0616cf2c..8ea964d18650 100644 --- a/tvix/glue/src/tvix_store_io.rs +++ b/tvix/glue/src/tvix_store_io.rs @@ -183,7 +183,7 @@ impl TvixStoreIO { } } }; - span.pb_set_message(&format!("🔨building {}", &store_path)); + span.pb_set_message(&format!("🔨Building {}", &store_path)); // derivation_to_build_request needs castore nodes for all inputs. // Provide them, which means, here is where we recursively build -- cgit 1.4.1