From faa9ac3ccb270aab349d0fcb773731dcf67c8274 Mon Sep 17 00:00:00 2001 From: Simon Date: Thu, 23 Aug 2018 12:48:15 -0400 Subject: [PATCH] Closing curl handle manually just to make sure --- crawl_server/remote_http.py | 1 + 1 file changed, 1 insertion(+) diff --git a/crawl_server/remote_http.py b/crawl_server/remote_http.py index d7e2716..e916e10 100644 --- a/crawl_server/remote_http.py +++ b/crawl_server/remote_http.py @@ -190,6 +190,7 @@ class HttpDirectory(RemoteDirectory): path, name = os.path.split(stripped_url) date = headers.get("Last-Modified", "1970-01-01") + curl.close() return File( path=unquote(path).strip("/"), name=unquote(name),