Open jesseshieh opened 7 years ago
Thanks for the comment. Currently, identical requests would return the same result. One possibility is to add un-relevant query params (just for testing purpose) for differentiating first (pending
) and second (done
) requests. It may not be ideal, but what do you think?
I ran into a similar problem and it's not possible to change the query in our case. The actual HTTP request happens inside a library, which we have no control.
I'm also suffering from this issue. It's hard to mock requests from ExAws
. For instance. trying to request two items from an SQS queue is the exact same request, even though it returns different responses
@parroty i tried appending different unique query strings to the URL, I'm still getting back a previous response.
My app polls a URL which returns "pending" until it returns "done". The URL is exactly the same each time I poll. Is it possible for exvcr to record the fact that the first request and the last request should send different responses?