diff options
author | Florian Klink <flokli@flokli.de> | 2024-06-13T06·39+0300 |
---|---|---|
committer | clbot <clbot@tvl.fyi> | 2024-06-13T11·59+0000 |
commit | 7ee55c293cc47a6b3bebacd4d991aa9aa9cc7287 (patch) | |
tree | a7ef84f04afe2f6e503a859d1c38ca6758bfb1f2 /tvix | |
parent | 08f794e7e7c85057d196745ef2f474007af79413 (diff) |
fix(tvix/glue/tvix_store_io): use same case for progress messages r/8258
"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 <flokli@flokli.de> Reviewed-by: Ilan Joselevich <personal@ilanjoselevich.com> Tested-by: BuildkiteCI Reviewed-by: flokli <flokli@flokli.de>
Diffstat (limited to 'tvix')
-rw-r--r-- | tvix/glue/src/tvix_store_io.rs | 2 |
1 files changed, 1 insertions, 1 deletions
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 |