Skip to content

Commit

Permalink
fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
dudikeleti committed Feb 7, 2025
1 parent 0052195 commit 454edff
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tracer/src/Datadog.Trace/Debugger/Snapshots/Redaction.cs
Original file line number Diff line number Diff line change
Expand Up @@ -173,9 +173,9 @@ internal static class Redaction
"xsrftoken"
];

private static ConcurrentAdaptiveCache<Type, bool> _redactedTypesCache = new(evictionPolicyKind:EvictionPolicy.LFU);
private static ConcurrentAdaptiveCache<Type, bool> _redactedTypesCache = new(evictionPolicyKind: EvictionPolicy.Lfu);

private static ConcurrentAdaptiveCache<string, bool> _redactedKeywordsCache = new(evictionPolicyKind: EvictionPolicy.LFU);
private static ConcurrentAdaptiveCache<string, bool> _redactedKeywordsCache = new(evictionPolicyKind: EvictionPolicy.Lfu);

internal static bool IsSafeToCallToString(Type type)
{
Expand Down

0 comments on commit 454edff

Please sign in to comment.