mirror of
https://github.com/scylladb/scylladb.git
synced 2026-05-31 03:56:42 +00:00
Retry mechanism didn't work when URLError happend. For example: urllib.error.URLError: <urlopen error [Errno 101] Network is unreachable> Let's catch URLError instead of HTTP since URLError is a base exception for all exceptions in the urllib module. Fixes: #7569 Closes #7567