author | Mitchell Hentges <mhentges@mozilla.com> |
Tue, 19 Oct 2021 19:00:05 +0000 | |
changeset 596384 | 3258547b4f42300bd02abace0b4b68f42dd9bef1 |
parent 596383 | 9d531fd67a5fd972472ba7b56e27e32d2fed0be5 |
child 596385 | 7eb79ae0c067d98d4ad6bdab882a6547663855d3 |
push id | 38896 |
push user | abutkovits@mozilla.com |
push date | Tue, 19 Oct 2021 21:51:00 +0000 |
treeherder | mozilla-central@e9071741b84c [default view] [failures only] |
perfherder | [talos] [build metrics] [platform microbench] (compared to previous push) |
reviewers | ahal |
bugs | 1721609 |
milestone | 95.0a1 |
first release with | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
last release without | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
--- a/python/mach/mach/sentry.py +++ b/python/mach/mach/sentry.py @@ -49,17 +49,19 @@ class NoopErrorReporter(ErrorReporter): def register_sentry(argv, settings, topsrcdir): if not is_telemetry_enabled(settings): return NoopErrorReporter() global _is_unmodified_mach_core_thread _is_unmodified_mach_core_thread = Thread( - target=_is_unmodified_mach_core, args=[topsrcdir] + target=_is_unmodified_mach_core, + args=[topsrcdir], + daemon=True, ) _is_unmodified_mach_core_thread.start() sentry_sdk.init( _SENTRY_DSN, before_send=lambda event, _: _process_event(event, topsrcdir) ) sentry_sdk.add_breadcrumb(message="./mach {}".format(" ".join(argv))) return SentryErrorReporter()