Running into the following exception while trying to query a RESTful api(note not my api, so going in and doing anything with the actual server is unfortunately not possible):
javax.naming.NamingException: LDAP response read timed out
.
I am using Python-requests to handle all of my GETs, POSTs, etc, and the actual connection appears to always be fine, but when the server is under heavy load it appears to not actually return all of the data before the read timesout. Anybody know of anyway to change the timeout on the read? Looking through the Python-requests documentation, I was only able to find information on changing the connection timeout.
Note, I have read through other read timeout questions, but all were questions regarding Pythons other http/url libraries.