Skip to content
Snippets Groups Projects
Commit 696e5a30 authored by Masood Malekghassemi's avatar Masood Malekghassemi
Browse files

Merge pull request #3146 from nathanielmanistaatgoogle/grace

Fix grace period bug in _end.accept_ticket
parents 6de001e3 1d14618a
Branches
Tags
No related merge requests found
......@@ -203,11 +203,11 @@ class _End(End):
def accept_ticket(self, ticket):
"""See links.Link.accept_ticket for specification."""
with self._lock:
if self._cycle is not None and not self._cycle.grace:
if self._cycle is not None:
operation = self._cycle.operations.get(ticket.operation_id)
if operation is not None:
operation.handle_ticket(ticket)
elif self._servicer_package is not None:
elif self._servicer_package is not None and not self._cycle.grace:
termination_action = _termination_action(
self._lock, self._stats, ticket.operation_id, self._cycle)
operation = _operation.service_operate(
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment