From cff28f7ac838b6269237a852e3d7537df41d2f12 Mon Sep 17 00:00:00 2001 From: Deirdre Connolly Date: Wed, 9 Dec 2020 11:57:54 -0500 Subject: [PATCH] Use the commit sha as the sentry release --- zebrad/src/application.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/zebrad/src/application.rs b/zebrad/src/application.rs index 7843322a7..9ddc52149 100644 --- a/zebrad/src/application.rs +++ b/zebrad/src/application.rs @@ -176,6 +176,7 @@ impl Application for ZebradApp { let guard = sentry::init( sentry::ClientOptions { debug: true, + release: Some(Self::git_commit().into()), ..Default::default() } .add_integration(sentry_tracing::TracingIntegration::default()),