Skip to content

Commit

Permalink
Re-fixed codesmell
Browse files Browse the repository at this point in the history
This is to test the data protection keys between deployments
  • Loading branch information
noremacskich committed Sep 22, 2024
1 parent ded67bd commit c1b4418
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/ExpressedRealms.Server/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
builder.Host.UseSerilog();

// Since we are in a container, we need to keep track of the data keys manually
string blobStorageEndpoint = Environment.GetEnvironmentVariable("AZURE_STORAGEBLOB_RESOURCEENDPOINT") ?? "";
var blobStorageEndpoint = Environment.GetEnvironmentVariable("AZURE_STORAGEBLOB_RESOURCEENDPOINT") ?? "";
if (!string.IsNullOrEmpty(blobStorageEndpoint))
{
var blobServiceClient = new BlobServiceClient(new Uri(blobStorageEndpoint), new DefaultAzureCredential());
Expand Down

0 comments on commit c1b4418

Please sign in to comment.