File: no-async-iter-6132a42e52348a75.yaml

package info (click to toggle)
python-tenacity 9.1.2-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 700 kB
  • sloc: python: 3,179; makefile: 11
file content (7 lines) | stat: -rw-r--r-- 264 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
---
fixes:
  - |
    `AsyncRetrying` was erroneously implementing `__iter__()`, making tenacity
    retrying mechanism working but in a synchronous fashion and not waiting as
    expected. This interface has been removed, `__aiter__()` should be used
    instead.