Skip to content

Commit

Permalink
[sonarcloud] Remove nullable annotation
Browse files Browse the repository at this point in the history
  • Loading branch information
DrizzlyOwl committed May 31, 2024
1 parent 7366805 commit 695630a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dfe.PrepareConversions/Dfe.PrepareConversions/Startup.cs
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ public void ConfigureServices(IServiceCollection services)

if (Directory.Exists(dpTargetPath)) {
// If a Key Vault Key URI is defined, expect to encrypt the keys.xml
string? kvProtectionKeyUri = Configuration.GetValue<string>("DataProtection:KeyVaultKey");
string kvProtectionKeyUri = Configuration.GetValue<string>("DataProtection:KeyVaultKey");

// Setup basic Data Protection and persist keys.xml to local file system
var dp = services.AddDataProtection().PersistKeysToFileSystem(new DirectoryInfo(dpTargetPath));
Expand Down

0 comments on commit 695630a

Please sign in to comment.