Skip to content
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -508,6 +508,8 @@ def _schedule_ready_retries(self) -> None:
)

for _ in range(take_until_index):
if not self._retries:

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I see that cover still passes.

#QUESTION
#NIT
Is this conditional something that should be tested to ensure we don't have regression if this code ever changes?

I will approve and defer to you in determining whether adding at test is necessary.

break
retry: OperationRetry = self._retries.popleft()
retry.retry(self)
return None
Expand Down
Loading