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 committed Sep 12, 2023
1 parent 56b01d0 commit e92a8b3
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 @@ public class QueueFileChanges {
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 e92a8b3

Please sign in to comment.