@@ -56,10 +56,10 @@ public class BlobUploadProcessor
5656 private readonly BlobContainerClient testResultsContainerClient ;
5757 private readonly BlobContainerClient buildDefinitionsContainerClient ;
5858 private readonly BlobContainerClient buildFailuresContainerClient ;
59- private readonly BlobContainerClient pipelineOwnersContainerClient ;
59+ private readonly BlobContainerClient pipelineOwnersContainerClient ;
6060 private readonly IOptions < PipelineWitnessSettings > options ;
6161 private readonly Dictionary < string , int ? > cachedDefinitionRevisions = new ( ) ;
62- private readonly IFailureAnalyzer failureAnalyzer ;
62+ private readonly IFailureAnalyzer failureAnalyzer ;
6363
6464 public BlobUploadProcessor (
6565 ILogger < BlobUploadProcessor > logger ,
@@ -186,7 +186,7 @@ public async Task UploadBuildBlobsAsync(string account, Guid projectId, int buil
186186
187187 if ( build . Definition . Id == options . Value . PipelineOwnersDefinitionId )
188188 {
189- await UploadPipelineOwnersBlobAsync ( account , build , timeline ) ;
189+ await UploadPipelineOwnersBlobAsync ( account , build , timeline ) ;
190190 }
191191 }
192192
@@ -342,7 +342,7 @@ private async Task UploadBuildFailureBlobAsync(string account, Build build, Time
342342 stringBuilder . AppendLine ( contentLine ) ;
343343 }
344344
345- await blobClient . UploadAsync ( new BinaryData ( stringBuilder . ToString ( ) ) ) ;
345+ await blobClient . UploadAsync ( new BinaryData ( stringBuilder . ToString ( ) ) ) ;
346346 }
347347 catch ( RequestFailedException ex ) when ( ex . Status == ( int ) HttpStatusCode . Conflict )
348348 {
0 commit comments