Anyone who's spent some time with Webmock:
Noticed that we have tons of requests from the frontend for assets (React/Vite/GraphQL) that get caught up on the header normalization which is expensive and has a ton of object allocations.
Know of any ways to get webmock to ignore those urls entirely?
@baweaver If you don't use VCR, not sure how to do this on Webmock directly but in case the RequestIgnorer logic from VCR helps: https://github.com/vcr/vcr/blob/9bbef9c5d1b2a2bb9643d6aa37b88d6729657b00/lib/vcr/request_ignorer.rb#L14
@olivierlacan yeah it's on VCR, will have to give that a try.