From 12175334bfbc14689bf7ef1de9ef6cd732736ce7 Mon Sep 17 00:00:00 2001 From: Qstick Date: Mon, 3 Jul 2023 12:59:53 -0500 Subject: [PATCH] Add package to Sentry release to ensure apps don't mix --- azure-pipelines.yml | 2 +- src/NzbDrone.Common/Instrumentation/Sentry/SentryTarget.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 88f8015b2..4f63b6b25 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -363,7 +363,7 @@ stages: - bash: | echo "Uploading source maps to sentry" curl -sL https://sentry.io/get-cli/ | bash - RELEASENAME="${LIDARRVERSION}-${BUILD_SOURCEBRANCHNAME}" + RELEASENAME="$Lidarr@{LIDARRVERSION}-${BUILD_SOURCEBRANCHNAME}" sentry-cli releases new --finalize -p lidarr -p lidarr-ui -p lidarr-update "${RELEASENAME}" sentry-cli releases -p lidarr-ui files "${RELEASENAME}" upload-sourcemaps _output/UI/ --rewrite sentry-cli releases set-commits --auto "${RELEASENAME}" diff --git a/src/NzbDrone.Common/Instrumentation/Sentry/SentryTarget.cs b/src/NzbDrone.Common/Instrumentation/Sentry/SentryTarget.cs index 79339339b..9a89c1cb7 100644 --- a/src/NzbDrone.Common/Instrumentation/Sentry/SentryTarget.cs +++ b/src/NzbDrone.Common/Instrumentation/Sentry/SentryTarget.cs @@ -100,7 +100,7 @@ namespace NzbDrone.Common.Instrumentation.Sentry o.Dsn = dsn; o.AttachStacktrace = true; o.MaxBreadcrumbs = 200; - o.Release = BuildInfo.Release; + o.Release = $"{BuildInfo.AppName}@{BuildInfo.Release}"; o.BeforeSend = x => SentryCleanser.CleanseEvent(x); o.BeforeBreadcrumb = x => SentryCleanser.CleanseBreadcrumb(x); o.Environment = BuildInfo.Branch;