Skip to content

Commit

Permalink
🔧 Disable Sentry transactions
Browse files Browse the repository at this point in the history
  • Loading branch information
ThePooN committed Feb 2, 2025
1 parent daecae2 commit 0834a0b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion osu.Server.Spectator/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ private static IHostBuilder createHostBuilder(string[] args)
webBuilder.UseSentry(o =>
{
o.AddExceptionFilterForType<HubException>();
o.TracesSampleRate = 0.01;
o.TracesSampleRate = 0;
o.Dsn = AppSettings.SentryDsn ?? throw new InvalidOperationException("SENTRY_DSN environment variable not set. "
+ "Please set the value of this variable to a valid Sentry DSN to use for logging events.");
// TODO: set release name
Expand Down

0 comments on commit 0834a0b

Please sign in to comment.