Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
gwcelery
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
emfollow
gwcelery
Merge requests
!987
Ignore noisy log but harmless messsages from adc-streaming
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Ignore noisy log but harmless messsages from adc-streaming
leo-singer/gwcelery:ignore-logger-adc-streaming
into
main
Overview
1
Commits
1
Pipelines
1
Changes
1
Merged
Leo P. Singer
requested to merge
leo-singer/gwcelery:ignore-logger-adc-streaming
into
main
2 years ago
Overview
1
Commits
1
Pipelines
1
Changes
1
Expand
Remove once
#457 (closed)
is fixed.
See
!985 (merged)
.
0
0
Merge request reports
Compare
main
main (base)
and
latest version
latest version
dadb3352
1 commit,
2 years ago
1 file
+
7
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
gwcelery/sentry/__init__.py
+
7
−
1
Options
@@ -4,7 +4,7 @@ from urllib.parse import urlparse, urlunparse
from
celery.utils.log
import
get_logger
from
safe_netrc
import
netrc
,
NetrcParseError
import
sentry_sdk
from
sentry_sdk.integrations
import
celery
,
flask
,
redis
,
tornado
from
sentry_sdk.integrations
import
celery
,
flask
,
logging
,
redis
,
tornado
from
..
import
_version
from
..util
import
SPHINX
@@ -48,6 +48,12 @@ def configure():
netloc
)
return
# Ignore noisy log but harmless messsages from adc-streaming.
#
# FIXME: Remove once https://git.ligo.org/emfollow/gwcelery/-/issues/457
# is fixed.
logging
.
ignore_logger
(
'
adc-streaming
'
)
# The "legacy" Sentry DSN requires a "public key" and a "private key",
# which are transmitted as the username and password in the URL.
# However, as of Sentry 9, then "private key" part is no longer required.
Loading