Skip to content
Snippets Groups Projects
Commit d8dde19f authored by Erik Johnston's avatar Erik Johnston
Browse files

Log if we try to do attestations for our own user and group

parent 585972b5
No related branches found
No related tags found
No related merge requests found
......@@ -130,10 +130,16 @@ class GroupAttestionRenewer(object):
def _renew_attestation(group_id, user_id):
attestation = self.attestations.create_attestation(group_id, user_id)
if self.is_mine_id(group_id):
if not self.is_mine_id(group_id):
destination = get_domain_from_id(group_id)
else not self.is_mine_id(user_id):
destination = get_domain_from_id(user_id)
else:
destination = get_domain_from_id(group_id)
logger.warn(
"Incorrectly trying to do attestations for user: %r in %r",
user_id, group_id,
)
return
yield self.transport_client.renew_group_attestation(
destination, group_id, user_id,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment