I have the feeling that some celery tasks hangs indefinitely waiting for an http response from servers.
We should set timeouts for all tasks which perform requests to remote servers.
Two possible approaches:
- use timeout in celery task (easier)
- use timeout with requests, arcrest and owslib. I am not sure though if arcrest and owslib have the option to set a timeout
I have the feeling that some celery tasks hangs indefinitely waiting for an http response from servers.
We should set timeouts for all tasks which perform requests to remote servers.
Two possible approaches: