Skip to content

Commit 156796d

Browse files
authored
Addressed feedback
1 parent 46ebb2c commit 156796d

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed

src/Components/Server/src/CircuitOptions.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@ public sealed class CircuitOptions
6868
/// </summary>
6969
/// <remarks>
7070
/// When using a <see cref="HybridCache"/> based implementation this value
71+
/// is used for the local cache retention period.
7172
/// </remarks>
7273
public TimeSpan PersistedCircuitInMemoryRetentionPeriod { get; set; } = TimeSpan.FromHours(2);
7374

src/Components/Server/src/Circuits/HybridCacheCircuitPersistenceProvider.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,6 @@ public async Task PersistCircuitAsync(CircuitId circuitId, PersistedCircuitState
4949
{
5050
await _lock.WaitAsync(cancellation);
5151
await _hybridCache.SetAsync(circuitId.Secret, persistedCircuitState, _cacheWriteOptions, _tags, cancellation);
52-
5352
}
5453
catch (Exception ex)
5554
{

0 commit comments

Comments
 (0)