Skip to content

Commit ba137e4

Browse files
committed
Merged PR 750956: [Blob L3 GC] Enable deleting old untracked containers by default
[Blob L3 GC] Enable deleting old untracked containers by default. This has been running successfully for a couple of days in the cbrmtest-centralus cache, which is the main cache where we've been doing experiments. Enabling for all other caches. This keeps the option of disabling via config.
1 parent bb9c808 commit ba137e4

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

Public/Src/Cache/LifetimeManager/Library/BlobQuotaKeeperConfig.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,8 @@ public class BlobQuotaKeeperConfig
2626

2727
/// <summary>
2828
/// Specifies how old an untracked namespace should be before we delete it. Set to null to disable the feature.
29-
/// TODO: Set a default of 2 days once we have rolled this out.
3029
/// </summary>
31-
public TimeSpan? UntrackedNamespaceDeletionThreshold { get; set; } = null;
30+
public TimeSpan? UntrackedNamespaceDeletionThreshold { get; set; } = TimeSpan.FromDays(2);
3231

3332
/// <summary>
3433
/// Retry policy for Azure Storage client.

0 commit comments

Comments
 (0)