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
Commits
dadb3352
Commit
dadb3352
authored
2 years ago
by
Leo P. Singer
Browse files
Options
Downloads
Patches
Plain Diff
Ignore noisy log but harmless messsages from adc-streaming
Remove once
#457
is fixed. See
!985
.
parent
546eecac
No related branches found
No related tags found
1 merge request
!987
Ignore noisy log but harmless messsages from adc-streaming
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
gwcelery/sentry/__init__.py
+7
-1
7 additions, 1 deletion
gwcelery/sentry/__init__.py
with
7 additions
and
1 deletion
gwcelery/sentry/__init__.py
+
7
−
1
View file @
dadb3352
...
...
@@ -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.
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment