We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 89a1e71 commit be054bdCopy full SHA for be054bd
src/seer/app.py
@@ -110,6 +110,10 @@
110
statsd_host=os.environ.get("STATSD_HOST", "127.0.0.1"),
111
statsd_port=int(os.environ.get("STATSD_PORT", "8126")),
112
)
113
+# Workaround for https://github.com/DataDog/datadogpy/issues/764 as described in https://github.com/getsentry/sentry/pull/68644/files#
114
+statsd.disable_telemetry()
115
+statsd.disable_buffering = False
116
+statsd._container_id = None
117
118
119
@json_api(blueprint, "/v0/issues/severity-score")
0 commit comments