Codacy issues
This commit is contained in:
parent
3334f87601
commit
2fba4183a3
@ -81,7 +81,7 @@ class User(models.Model):
|
|||||||
for ticket_class in ticket_classes:
|
for ticket_class in ticket_classes:
|
||||||
queryset = ticket_class.objects.filter(user=self)
|
queryset = ticket_class.objects.filter(user=self)
|
||||||
for ticket in queryset:
|
for ticket in queryset:
|
||||||
ticket.logout(request, session, async_list)
|
ticket.logout(session, async_list)
|
||||||
queryset.delete()
|
queryset.delete()
|
||||||
for future in async_list:
|
for future in async_list:
|
||||||
if future:
|
if future:
|
||||||
@ -415,7 +415,7 @@ class Ticket(models.Model):
|
|||||||
logger.warning("Error durring SLO %s" % error)
|
logger.warning("Error durring SLO %s" % error)
|
||||||
sys.stderr.write("%r\n" % error)
|
sys.stderr.write("%r\n" % error)
|
||||||
|
|
||||||
def logout(self, request, session, async_list=None):
|
def logout(self, session, async_list=None):
|
||||||
"""Send a SLO request to the ticket service"""
|
"""Send a SLO request to the ticket service"""
|
||||||
# On logout invalidate the Ticket
|
# On logout invalidate the Ticket
|
||||||
self.validate = True
|
self.validate = True
|
||||||
|
@ -54,6 +54,7 @@ def get_user_ticket_request(service):
|
|||||||
|
|
||||||
|
|
||||||
def get_validated_ticket(service):
|
def get_validated_ticket(service):
|
||||||
|
"""Return a tick that has being already validated. Used to test SLO"""
|
||||||
(ticket, auth_client) = get_user_ticket_request(service)[1:3]
|
(ticket, auth_client) = get_user_ticket_request(service)[1:3]
|
||||||
|
|
||||||
client = Client()
|
client = Client()
|
||||||
|
Loading…
Reference in New Issue
Block a user