Skip to content

Commit 67eaf1d

Browse files
authored
Added additional logic to prevent logging error when no triage owner found for Firefox::Untriaged (#2409)
1 parent 4fde3bf commit 67eaf1d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bugbot/round_robin.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ def get(self, bug, date, only_one=True, has_nick=True):
148148
if utils.is_no_assignee(mail):
149149
mail, nick = None, None
150150

151-
if mail is None:
151+
if mail is None and pc != "Firefox::Untriaged":
152152
logger.error("No triage owner for {}".format(pc))
153153

154154
self.add_component_for_triager(pc, mail)

0 commit comments

Comments
 (0)