turn off profiling for now to see if that is what is causing segfaults

This commit is contained in:
burnettk 2023-02-10 09:52:23 -05:00
parent ed52f07251
commit 47ee1f73cc

View File

@ -225,6 +225,6 @@ def configure_sentry(app: flask.app.Flask) -> None:
traces_sample_rate=float(sentry_traces_sample_rate),
traces_sampler=traces_sampler,
# The profiles_sample_rate setting is relative to the traces_sample_rate setting.
_experiments={"profiles_sample_rate": profiles_sample_rate},
# _experiments={"profiles_sample_rate": profiles_sample_rate},
before_send=before_send,
)