Fix timeouts and error reporting
This commit is contained in:
parent
93d2bec204
commit
656bd50e47
@ -5,7 +5,7 @@
|
|||||||
from .client import CZDS
|
from .client import CZDS
|
||||||
|
|
||||||
|
|
||||||
__version__ = '1.3.2'
|
__version__ = '1.3.3'
|
||||||
__author__ = 'acidvegas'
|
__author__ = 'acidvegas'
|
||||||
__email__ = 'acid.vegas@acid.vegas'
|
__email__ = 'acid.vegas@acid.vegas'
|
||||||
__github__ = 'https://github.com/acidvegas/czds'
|
__github__ = 'https://github.com/acidvegas/czds'
|
@ -171,7 +171,7 @@ class CZDS:
|
|||||||
tld_name = url.split('/')[-1].split('.')[0] # Extract TLD from URL
|
tld_name = url.split('/')[-1].split('.')[0] # Extract TLD from URL
|
||||||
max_retries = 10 # Maximum number of retries for failed downloads
|
max_retries = 10 # Maximum number of retries for failed downloads
|
||||||
retry_delay = 5 # Delay between retries in seconds
|
retry_delay = 5 # Delay between retries in seconds
|
||||||
timeout = aiohttp.ClientTimeout(total=120) # Timeout for the download
|
timeout = aiohttp.ClientTimeout(total=None, connect=60, sock_connect=60, sock_read=None)
|
||||||
|
|
||||||
# Start the attempt loop
|
# Start the attempt loop
|
||||||
for attempt in range(max_retries):
|
for attempt in range(max_retries):
|
||||||
@ -219,7 +219,7 @@ class CZDS:
|
|||||||
await file.write(chunk)
|
await file.write(chunk)
|
||||||
total_size += len(chunk)
|
total_size += len(chunk)
|
||||||
pbar.update(len(chunk))
|
pbar.update(len(chunk))
|
||||||
except (asyncio.TimeoutError, aiohttp.ClientError) as e:
|
except Exception as e:
|
||||||
logging.error(f'Connection error while downloading {tld_name}: {str(e)}')
|
logging.error(f'Connection error while downloading {tld_name}: {str(e)}')
|
||||||
if attempt + 1 < max_retries:
|
if attempt + 1 < max_retries:
|
||||||
logging.info(f'Retrying {tld_name} in {retry_delay} seconds...')
|
logging.info(f'Retrying {tld_name} in {retry_delay} seconds...')
|
||||||
@ -246,7 +246,7 @@ class CZDS:
|
|||||||
|
|
||||||
return filepath
|
return filepath
|
||||||
|
|
||||||
except (aiohttp.ClientError, asyncio.TimeoutError) as e:
|
except Exception as e:
|
||||||
if attempt + 1 >= max_retries:
|
if attempt + 1 >= max_retries:
|
||||||
logging.error(f'Failed to download {tld_name} after {max_retries} attempts: {str(e)}')
|
logging.error(f'Failed to download {tld_name} after {max_retries} attempts: {str(e)}')
|
||||||
if 'filepath' in locals() and os.path.exists(filepath):
|
if 'filepath' in locals() and os.path.exists(filepath):
|
||||||
@ -255,12 +255,6 @@ class CZDS:
|
|||||||
logging.warning(f'Download attempt {attempt + 1} failed for {tld_name}: {str(e)}')
|
logging.warning(f'Download attempt {attempt + 1} failed for {tld_name}: {str(e)}')
|
||||||
await asyncio.sleep(retry_delay)
|
await asyncio.sleep(retry_delay)
|
||||||
|
|
||||||
except Exception as e:
|
|
||||||
logging.error(f'Error downloading {tld_name}: {str(e)}')
|
|
||||||
if 'filepath' in locals() and os.path.exists(filepath):
|
|
||||||
os.remove(filepath)
|
|
||||||
raise
|
|
||||||
|
|
||||||
async with semaphore:
|
async with semaphore:
|
||||||
return await _download()
|
return await _download()
|
||||||
|
|
||||||
|
2
setup.py
2
setup.py
@ -11,7 +11,7 @@ with open('README.md', 'r', encoding='utf-8') as fh:
|
|||||||
|
|
||||||
setup(
|
setup(
|
||||||
name='czds-api',
|
name='czds-api',
|
||||||
version='1.3.2',
|
version='1.3.3',
|
||||||
author='acidvegas',
|
author='acidvegas',
|
||||||
author_email='acid.vegas@acid.vegas',
|
author_email='acid.vegas@acid.vegas',
|
||||||
description='ICANN API for the Centralized Zones Data Service',
|
description='ICANN API for the Centralized Zones Data Service',
|
||||||
|
Loading…
Reference in New Issue
Block a user