Skip to content
This repository has been archived by the owner on Nov 1, 2023. It is now read-only.

Commit

Permalink
Silence analysis
Browse files Browse the repository at this point in the history
  • Loading branch information
Porges authored Sep 14, 2023
1 parent f0b6e0c commit c50c5c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ApiService/ApiService/Functions/QueueFileChanges.cs
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ private async Async.Task ApplyRetentionPolicy(ResourceIdentifier storageAccount,
var expiryDate = DateTime.UtcNow + retentionPeriod.Value;
var tag = RetentionPolicyUtils.CreateExpiryDateTag(DateOnly.FromDateTime(expiryDate));
if (tags.TryAdd(tag.Key, tag.Value)) {
await blobClient.SetTagsAsync(tags);
_ = await blobClient.SetTagsAsync(tags);
}
}
}
Expand Down

0 comments on commit c50c5c4

Please sign in to comment.