Yes I know for sure there is an issue with the backend. The app will iterate
through many rows in a db each one with a url and login credentials etc.
Somtimes the backend has a faulty endpoint and my request is hung up and it
will never resolve. If that happens, if a request hangs I want the app to be
able to handle that scenario automatically with a timer or something else that
can kill the hung-up-request after a certain ammount of time. Since the request
will not resolve and no code below the request call will be executed I guess
some asyncronos functionality has to be involved but I cant find a solution.