mirror of https://github.com/zulip/zulip.git
Hide known warnings in unit test output
(imported from commit 484b383b7466f4428bbde55344775687149406b9)
This commit is contained in:
parent
6f42b90d23
commit
813073ec32
|
@ -1696,7 +1696,8 @@ def api_jira_webhook(request):
|
|||
content += "\n> %s" % (comment,)
|
||||
else:
|
||||
# Unknown event type
|
||||
logging.warning("Got JIRA event type we don't understand: %s" % (event,))
|
||||
if not settings.TEST_SUITE:
|
||||
logging.warning("Got JIRA event type we don't understand: %s" % (event,))
|
||||
return json_error("Unknown JIRA event type")
|
||||
|
||||
subject = elide_subject(subject)
|
||||
|
|
Loading…
Reference in New Issue