Aleksei Ivasiuta
Aleksei Ivasiuta
Hi. Any news on this? It still doesn't work.
@kettanaito Hello. I faced exactly the same problem. I realized that `X-Request-Id` is added to requests and not removed. Because of this `x-request-id` in the header `Access-Control-Request-Headers`. If the server...
@kettanaito Unfortunately, I have no idea how you can pass an identifier between xmlhttprequest and http instances, given that these are completely unrelated entities. It seems to me that it...
@kettanaito However `http.ClientRequest` is not present in the browser. As far as I understand, this deduplication mechanism should not work at all on the client. Alternatively, you can set the...
> We can easily check in `XMLHttpRequestInterceptor` if we are in a browser. If we are, there's nothing to de-duplicate, so no need for the header, so we can skip...
I think we can simply make such logic. https://github.com/mswjs/interceptors/pull/397
@kettanaito Hello. It would be great if you can review my PR and make a release with bug fix.
Hello. In the current solution, your interceptors break client applications that use synchronous requests. First, we need to make sure that when we try to make a synchronous request, control...
Sure. I'll try to fix it. I would also like to ask you to take a look at [this PR](https://github.com/mswjs/interceptors/pull/397). It's been hanging for 2 weeks now and you don't...
I use `jekyll/jekyll:4.2.2`. [Here is](https://github.com/algorithmics-blog/algorithmics-blog.github.io/blob/main/Makefile) my make script ``` JEKYLL_VERSION=4.2.2 serve: docker run --rm \ --volume=$(PWD):/srv/jekyll \ -p 4000:4000 \ -it jekyll/jekyll:$(JEKYLL_VERSION) \ jekyll serve --livereload ```