Skip to content

Commit 4223168

Browse files
committed
hmm retrying is also strictly an attribute on the bulk?
1 parent af4f6a6 commit 4223168

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

pymongo/asynchronous/bulk.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -524,7 +524,6 @@ async def _execute_command(
524524

525525
while run:
526526
self.is_retryable = run.is_retryable
527-
self.retrying = run.retrying
528527
if not self.retrying:
529528
self.next_run = next(generator, None)
530529
if self.next_run is None:

pymongo/synchronous/bulk.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -524,7 +524,6 @@ def _execute_command(
524524

525525
while run:
526526
self.is_retryable = run.is_retryable
527-
self.retrying = run.retrying
528527
if not self.retrying:
529528
self.next_run = next(generator, None)
530529
if self.next_run is None:

0 commit comments

Comments
 (0)