Skip to content

Commit

Permalink
The CacheFolder properties should actually be nullabe
Browse files Browse the repository at this point in the history
  • Loading branch information
Piedone committed Jan 24, 2024
1 parent e41bc2a commit ff7fdc4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public class AWSS3StorageCacheOptions : IAWSS3BucketClientOptions
/// <summary>
/// Gets or sets the cache folder's name that'll store cache files under the configured bucket.
/// </summary>
public string CacheFolder { get; set; } = null!;
public string? CacheFolder { get; set; }

/// <inheritdoc/>
public string? AccessKey { get; set; }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,5 @@ public class AzureBlobStorageCacheOptions
/// Must conform to Azure Blob Storage directory naming guidelines.
/// <see href="https://learn.microsoft.com/en-us/rest/api/storageservices/naming-and-referencing-containers--blobs--and-metadata#directory-names"/>
/// </summary>
public string CacheFolder { get; set; } = null!;
public string? CacheFolder { get; set; }
}

0 comments on commit ff7fdc4

Please sign in to comment.