Offir Golan
Offir Golan
As of right now, we don't support it mostly due to the fact that we don't need the post data when replaying recordings. Is there a specific use case you...
Would setting the [recordIfMissing](https://netflix.github.io/pollyjs/#/configuration?id=recordifmissing) config to `false` solve this?
@rolios any chance you can create a working reproduction that I can play around with?
@rodrigogs can you create a working reproduction that I can use to debug?
@rodrigogs would you mind checking if this issue occurs for you on `v1.10.0`?
Your config looks right to me. Do you have a header or something in the url that's constantly changing (e.g. a date, time stamp, or uuid) on every recording? If...
@vjpr are you needing this because the logger is too noisy? Would having something like `logging: true | false | 'compact' | 'verbose'` solve this for you?
Another workaround is to set `logging: false` and add your own custom logging middleware. ```js polly.server.any().on('response', (req) => { /* custom logging logic */}) ```
Unfortunately, the puppeteer adapter doesn't support recording binary data as of right now.
No, not a limitation on the Puppeteer side but it just wasn't implemented on this specific adapter. We recently finished adding binary data handling for the rest of the adapters...