From 08e98362ae464f49e98903dd93138cadbaf6461f Mon Sep 17 00:00:00 2001 From: James Greenhill Date: Sat, 2 Nov 2024 06:49:28 -0600 Subject: [PATCH] bugfix: Don't send traces to sentry from housewatch (#77) --- housewatch/settings/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/housewatch/settings/__init__.py b/housewatch/settings/__init__.py index 8d2a3a3..e2dbad8 100644 --- a/housewatch/settings/__init__.py +++ b/housewatch/settings/__init__.py @@ -34,11 +34,11 @@ # Set traces_sample_rate to 1.0 to capture 100% # of transactions for performance monitoring. # We recommend adjusting this value in production. - traces_sample_rate=1.0, + traces_sample_rate=0.0, # Set profiles_sample_rate to 1.0 to profile 100% # of sampled transactions. # We recommend adjusting this value in production. - profiles_sample_rate=1.0, + profiles_sample_rate=0.0, ) # TODO: Figure out why things dont work on cloud without debug