JD Conley
JD Conley
FWIW I went with something like this as a wrapper, using [retry-as-promised](https://www.npmjs.com/package/retry-as-promised). ```ts private makeRequest( action: (client: IRestClient) => Promise, ): Promise { return retry( async () => { const...
Just wanted to add that I'm having this issue on 0.72.6. It seems to be the scheme name having a space that causes the issue.
Just started doing some multithreaded Java dev in VS Code and hit this as well. Going to have to debug in a different IDE until this gets fixed.
Also just encountered this issue. Any idea on a fix? Seems like the android lib could be more flexible with its dependencies, perhaps?
> @justinpolygon hi, the header is not the same as what @jdconley meant. specifically, I'll quote [node js http agent docs](https://nodejs.org/api/http.html#http_new_agent_options): > I really hope you'll implement this soon, as...
@justinpolygon I looked through the code and was able to get around this by ignoring the typing on the global options for the rest client and provide my own agent...