HttpClient does not return anything
I am currently writing a method that makes a GET request to a server. The code I'm using for that is
For the endpoint, I'm currently using Mockoon until the actual server is ready. Now my call does not return. It neither comes back with an actual response nor does it throw the TaskCanceledException which it should after timing out. I've let it run for over 2 minutes now and it never reaches the exception nor the if statement right below the call. How can that happen?
Mockoon logs the call and also seems to send something back, but this never arrives apparently.
I can use call the endpoint successfully using postman, so that can't be it...
For the endpoint, I'm currently using Mockoon until the actual server is ready. Now my call does not return. It neither comes back with an actual response nor does it throw the TaskCanceledException which it should after timing out. I've let it run for over 2 minutes now and it never reaches the exception nor the if statement right below the call. How can that happen?
Mockoon logs the call and also seems to send something back, but this never arrives apparently.
I can use call the endpoint successfully using postman, so that can't be it...