[ie/youtube] Fix bug with `--extractor-retries inf` (#8328)

Authored by: Grub4K
pull/8337/head
Simon Sawicki 7 months ago committed by GitHub
parent 84e26038d4
commit feebf6d02f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -947,7 +947,10 @@ class YoutubeBaseInfoExtractor(InfoExtractor):
icd_rm = next(icd_retries)
main_retries = iter(self.RetryManager())
main_rm = next(main_retries)
for _ in range(main_rm.retries + icd_rm.retries + 1):
# Manual retry loop for multiple RetryManagers
# The proper RetryManager MUST be advanced after an error
# and it's result MUST be checked if the manager is non fatal
while True:
try:
response = self._call_api(
ep=ep, fatal=True, headers=headers,

Loading…
Cancel
Save