-
Notifications
You must be signed in to change notification settings - Fork 867
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Upload build artifacts to blob with batching (#3403)
* Upload build artifacts to blob with batching * attempt to fix bad diff * cleanup * merge fix * Adjust reporting timers * thread safety * fixes
- Loading branch information
Showing
4 changed files
with
335 additions
and
60 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
21 changes: 21 additions & 0 deletions
21
src/Microsoft.VisualStudio.Services.Agent/Blob/BlobFileInfo.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
// Copyright (c) Microsoft Corporation. | ||
// Licensed under the MIT License. | ||
|
||
using BuildXL.Cache.ContentStore.Hashing; | ||
|
||
namespace Microsoft.VisualStudio.Services.Agent.Blob | ||
{ | ||
public class BlobFileInfo | ||
{ | ||
public DedupNode Node { get; set; } | ||
public string Path { get; set; } | ||
public DedupIdentifier DedupId | ||
{ | ||
get | ||
{ | ||
return Node.GetDedupIdentifier(HashType.Dedup64K); | ||
} | ||
} | ||
public bool Success { get; set; } | ||
} | ||
} |
Oops, something went wrong.