Skip to main content

Troubleshooting Replay Mismatches

Symptoms

  • Replay returns "no matching recorded pair" errors
  • Wrong recorded response returned
  • Replay works for some requests but not others

Solutions

Matching Strategy

Check your replay matching strategy in proxy settings:

StrategyRequirements
ExactMethod + path + query + body must match perfectly
RelaxedMethod + path match only
CustomYour defined rules

If using Exact matching, minor differences in query params or body will cause mismatches.

Request Body Differences

Dynamic values (timestamps, UUIDs) in request bodies cause exact matching to fail:

  1. Switch to Relaxed matching, or
  2. Add custom matching rules that ignore dynamic fields

Sanitization Issues

If sanitization rules modify recorded data too aggressively:

  1. Review sanitization rules in the recording session
  2. Ensure template variables are resolving correctly
  3. Test with sanitization disabled to isolate the issue