Skip to content

Commit

Permalink
Explicit types
Browse files Browse the repository at this point in the history
  • Loading branch information
joelverhagen committed Aug 13, 2024
1 parent 5d88476 commit b18be38
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Catalog/Persistence/AzureStorage.cs
Original file line number Diff line number Diff line change
Expand Up @@ -454,8 +454,8 @@ public async Task<bool> AreSynchronized(ICloudBlockBlob sourceBlockBlob, ICloudB
{
if (await sourceBlockBlob.ExistsAsync(CancellationToken.None))
{
var sourceBlobAttributes = await sourceBlockBlob.FetchAttributesAsync(CancellationToken.None);
var destinationBlobAttributes = await destinationBlockBlob.FetchAttributesAsync(CancellationToken.None);
BlobProperties sourceBlobAttributes = await sourceBlockBlob.FetchAttributesAsync(CancellationToken.None);
BlobProperties destinationBlobAttributes = await destinationBlockBlob.FetchAttributesAsync(CancellationToken.None);
if (sourceBlobAttributes?.Metadata == null || destinationBlobAttributes?.Metadata == null)
{
return false;
Expand Down

0 comments on commit b18be38

Please sign in to comment.