I am doing a big loop of http requests to our database service. It all works fine, but whenever I run it, after a (seemingly random) number of successful queries, I receive the following error : urllib2.URLError: <urlopen error [Errno 1] _ssl.c:504: error:14094410:SSL routines:SSL3_READ_BYTES:sslv3 alert handshake failure>
.
I am using python, urllib2 to send the request, urllib to encode some stuff in my URL, and that's it. Like I said, it looks totally random. I just ran it and it failed after 6 requests. The time before, it crashed after 49 successfull tries. Has anyone had this issue before?
Thanks