Remove paranoid check

As long as all actions come from the same incident, having a submit
to somewhere else is fine - see https://build.suse.de/request/show/114532
This commit is contained in:
Stephan Kulow 2016-05-13 16:06:03 +02:00
parent 2fc2d8a549
commit a723b56641

View File

@ -336,8 +336,6 @@ class OpenQABot(ReviewBot.ReviewBot):
ret = None
types = set([a.type for a in req.actions])
if 'maintenance_release' in types:
if len(types) != 1:
raise Exception("can't handle types mixed with maintenance_release")
src_prjs = set([a.src_project for a in req.actions])
if len(src_prjs) != 1:
raise Exception("can't handle maintenance_release from different incidents")