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

Commit e92a8b3

Browse files
authored
Silence analysis
1 parent 56b01d0 commit e92a8b3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ApiService/ApiService/Functions/QueueFileChanges.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ private async Async.Task ApplyRetentionPolicy(ResourceIdentifier storageAccount,
101101
var expiryDate = DateTime.UtcNow + retentionPeriod.Value;
102102
var tag = RetentionPolicyUtils.CreateExpiryDateTag(DateOnly.FromDateTime(expiryDate));
103103
if (tags.TryAdd(tag.Key, tag.Value)) {
104-
await blobClient.SetTagsAsync(tags);
104+
_ = await blobClient.SetTagsAsync(tags);
105105
}
106106
}
107107
}

0 commit comments

Comments
 (0)