This is an automated email from the ASF dual-hosted git repository.
piotr pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/iggy.git
The following commit(s) were added to refs/heads/master by this push:
new 15722038 refactor(server): remove redundant sha1 print (#1668)
15722038 is described below
commit 15722038ff6c7d1107cfd33b99b4e9724fcd45e4
Author: Hubert Gruszecki <[email protected]>
AuthorDate: Sat Mar 29 16:19:28 2025 +0100
refactor(server): remove redundant sha1 print (#1668)
---
server/src/streaming/systems/info.rs | 3 ---
1 file changed, 3 deletions(-)
diff --git a/server/src/streaming/systems/info.rs
b/server/src/streaming/systems/info.rs
index cdb5a7ca..acfb537f 100644
--- a/server/src/streaming/systems/info.rs
+++ b/server/src/streaming/systems/info.rs
@@ -65,9 +65,6 @@ impl System {
system_info = load_system_info.unwrap();
}
- if let Some(sha) = option_env!("VERGEN_GIT_SHA") {
- info!("Commit SHA: {sha}");
- }
info!("Loaded {system_info}.");
let loaded_version =
SemanticVersion::from_str(&system_info.version.version)?;
if current_version.is_equal_to(&loaded_version) {