We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fa0458a commit 8caf425Copy full SHA for 8caf425
readthedocs/oauth/notifications.py
@@ -4,6 +4,7 @@
4
from messages_extends.constants import ERROR_PERSISTENT
5
6
from readthedocs.notifications import SiteNotification
7
+from readthedocs.notifications.constants import ERROR_NON_PERSISTENT
8
9
10
class AttachWebhookNotification(SiteNotification):
@@ -60,7 +61,7 @@ def get_context_data(self):
60
61
class GitBuildStatusFailureNotification(SiteNotification):
62
63
context_object_name = 'project'
- failure_level = ERROR_PERSISTENT
64
+ failure_level = ERROR_NON_PERSISTENT
65
failure_message = _(
66
'Could not send {{ provider_name }} build status report for {{ project.name }}. '
67
'Make sure you have the correct {{ provider_name }} repository permissions</a> and '
0 commit comments