Update gerritbot to respond to VRFY +2/-2.
Change-Id: Iece4652e00b665137061709b4d3545b2f37eb248
This commit is contained in:
parent
c4173c2a12
commit
4b7476294e
@ -110,16 +110,16 @@ class Gerrit(threading.Thread):
|
|||||||
self.ircbot.send(msg)
|
self.ircbot.send(msg)
|
||||||
|
|
||||||
for approval in data.get('approvals', []):
|
for approval in data.get('approvals', []):
|
||||||
if (approval['type'] == 'VRIF' and approval['value'] == '-1' and
|
if (approval['type'] == 'VRIF' and approval['value'] == '-2' and
|
||||||
'x-vrif-minus-1' in self.events):
|
'x-vrif-minus-2' in self.events):
|
||||||
msg = 'Verification of a change to %s failed: %s %s' % (
|
msg = 'Verification of a change to %s failed: %s %s' % (
|
||||||
data['change']['project'],
|
data['change']['project'],
|
||||||
data['change']['subject'],
|
data['change']['subject'],
|
||||||
data['change']['url'])
|
data['change']['url'])
|
||||||
self.ircbot.send(msg)
|
self.ircbot.send(msg)
|
||||||
|
|
||||||
if (approval['type'] == 'VRIF' and approval['value'] == '1' and
|
if (approval['type'] == 'VRIF' and approval['value'] == '2' and
|
||||||
'x-vrif-plus-1' in self.events):
|
'x-vrif-plus-2' in self.events):
|
||||||
msg = 'Verification of a change to %s succeeded: %s %s' % (
|
msg = 'Verification of a change to %s succeeded: %s %s' % (
|
||||||
data['change']['project'],
|
data['change']['project'],
|
||||||
data['change']['subject'],
|
data['change']['subject'],
|
||||||
|
Loading…
x
Reference in New Issue
Block a user