It's very likely that I am missing something simple here but looking for any ideas.
I am attempting concurrent connections using the example here:
https://github.com/httprb/http/wiki/Thread-Safety
If one of the requests fails for whatever reason (I am particularly concerned about 401/404 in this case), any ideas on how I can determine which request it was? The response object doesn't seem to have anything that I can use to determine the original request url (of course unless I am missing something)
Any help is appreciated!