Skip to content

Commit

Permalink
Enable S3246 (#2204)
Browse files Browse the repository at this point in the history
Enable S3246 and suppress existing warnings.
  • Loading branch information
Zombach authored Jul 18, 2024
1 parent f3bad33 commit d72f72d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
2 changes: 2 additions & 0 deletions src/Polly/Caching/ITtlStrategy.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@ public interface ITtlStrategy : ITtlStrategy<object>
/// Defines a strategy for providing time-to-live durations for cacheable results.
/// </summary>
/// <typeparam name="TResult">The type of the result.</typeparam>
#pragma warning disable S3246
public interface ITtlStrategy<TResult>
#pragma warning restore S3246
{
/// <summary>
/// Gets a TTL for a cacheable item, given the current execution context.
Expand Down
2 changes: 2 additions & 0 deletions src/Polly/CircuitBreaker/ICircuitBreakerPolicy.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,9 @@ public interface ICircuitBreakerPolicy : IsPolicy
/// Defines properties and methods common to all circuit-breaker policies generic-typed for executions returning results of type <typeparamref name="TResult"/>.
/// </summary>
/// <typeparam name="TResult">The type of the result.</typeparam>
#pragma warning disable S3246
public interface ICircuitBreakerPolicy<TResult> : ICircuitBreakerPolicy
#pragma warning restore S3246
{
/// <summary>
/// Gets the last result returned from a user delegate which the circuit-breaker handled.
Expand Down
2 changes: 1 addition & 1 deletion src/Polly/Polly.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<MutationScore>70</MutationScore>
<IncludePollyUsings>true</IncludePollyUsings>
<NoWarn>$(NoWarn);CA1010;CA1031;CA1051;CA1062;CA1063;CA1064;CA1710;CA1716;CA1724;CA1805;CA1815;CA1816;CA2211</NoWarn>
<NoWarn>$(NoWarn);S2223;S3215;S3246;S4039;S4457</NoWarn>
<NoWarn>$(NoWarn);S2223;S3215;S4039;S4457</NoWarn>
<!--Public API Analyzers: We do not need to fix these as it would break compatibility with released Polly versions-->
<NoWarn>$(NoWarn);RS0037;</NoWarn>
</PropertyGroup>
Expand Down

0 comments on commit d72f72d

Please sign in to comment.