mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-11-04 22:40:29 +03:00
Merge branch 'mr/verify_ca_certs_v2' into 'master'
makebuildserver: verify https all requests to avoid urllib3 warnings See merge request !316
This commit is contained in:
commit
36ef93520c
1 changed files with 1 additions and 1 deletions
|
|
@ -393,7 +393,7 @@ def update_cache(cachedir, cachefiles):
|
|||
|
||||
if download:
|
||||
r = requests.get(srcurl, headers=resume_header,
|
||||
stream=True, verify=False, allow_redirects=True)
|
||||
stream=True, allow_redirects=True)
|
||||
content_length = int(r.headers.get('content-length'))
|
||||
with open(local_filename, 'ab') as f:
|
||||
for chunk in progress.bar(r.iter_content(chunk_size=65536),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue