Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions src/ol_infrastructure/applications/edxapp/config_builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -605,6 +605,22 @@ def get_deployment_overrides(env_prefix: str) -> ConfigDict:
"edu.mit.learn.app",
],
},
"SENTRY_IGNORED_EXCEPTION_MESSAGES": [
(
"Tried to inspect an unsupported, broken, or",
"missing downstream->upstream link:",
),
(
"Invalid HTTP_HOST header: 'vqbjqfz3ldd42z6qff3t2h5cr62c5rok._domainkey.huggingface.co'.",
"The domain name provided is not valid according to RFC 1034/1035.",
),
(
"A label was requested for language code `ht` but",
"the code is completely unknown",
),
("Failed async course content export to git",),
("Failed to pull git repository",),
],
},
}

Expand Down