Commit 94a89c8
Fix undo path parameters being passed with JSON string quotes (#3197)
The `request_parameter_with_value` step stored raw JSON-encoded values
(e.g., `"uuid"` with quotes) into `path_parameters`. When undo operations
used these values, the quotes got URL-encoded as `%22`, causing VCR
cassette path mismatches. Deserialize with `json.loads()` before storing
to match how `request_parameter` already handles this correctly.
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>1 parent 559f515 commit 94a89c8
1 file changed
+3
-3
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
459 | 459 | | |
460 | 460 | | |
461 | 461 | | |
462 | | - | |
463 | | - | |
464 | | - | |
| 462 | + | |
| 463 | + | |
| 464 | + | |
465 | 465 | | |
466 | 466 | | |
467 | 467 | | |
| |||
0 commit comments