Skip to content

Commit

Permalink
added $..name removable sanitizer
Browse files Browse the repository at this point in the history
  • Loading branch information
samvaity committed May 10, 2024
1 parent 16400a3 commit 1c3e26b
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,9 @@ public class TestProxyUtils {
private static final HttpHeaderName X_RECORDING_SKIP = HttpHeaderName.fromString("x-recording-skip");
private static final String REDACTED_VALUE = "REDACTED";
private static final String URL_REGEX = "(?<=http://|https://)([^/?]+)";
// Removing `Operation-Location` and `$..id` from the default list of sanitizers as they are used in the SDK.
// Removing `Operation-Location`, `$..id` and `$..name` from the default list of sanitizers as they are used in the SDK.
public static final List<String> DEFAULT_REMOVE_SANITIZER_LIST
= Collections.unmodifiableList(Arrays.asList("AZSDK2030", "AZSDK3430"));
= Collections.unmodifiableList(Arrays.asList("AZSDK2030", "AZSDK3430", "AZSDK3493"));

// These are prepended with "$.." creating a Jsonpath expression.
private static final List<String> JSON_BODY_KEYS_TO_REDACT = Arrays.asList("authHeader", "accountKey",
Expand Down

0 comments on commit 1c3e26b

Please sign in to comment.