-
Notifications
You must be signed in to change notification settings - Fork 378
Setting maxClients for parallelism in yaml #7481
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
d4c8770
d460d9c
7da2f87
b050d51
ae972f1
8169cb0
baeb90b
fe73be6
e9c3648
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -196,6 +196,10 @@ public string BuildQuality | |
| /// </summary> | ||
| public bool UseStreamingPublishing { get; set; } = false; | ||
|
|
||
| public int StreamingPublishingMaxClients {get; set;} | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. perhaps a short comment describing why these values are settable is in order.
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. added a comment with the streaming and non streaming values
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The comments should be /// < Summary > style and go here
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. sure will update it |
||
|
|
||
| public int NonStreamingPublishingMaxClients {get; set;} | ||
|
|
||
| /// <summary> | ||
| /// Just an internal flag to keep track whether we published assets via a V3 manifest or not. | ||
| /// </summary> | ||
|
|
@@ -389,7 +393,9 @@ internal PublishArtifactsInManifestBase ConstructPublishingV3Task(BuildModel bui | |
| BuildId = this.BuildId, | ||
| AzureProject = this.AzureProject, | ||
| AzureDevOpsOrg = this.AzureDevOpsOrg, | ||
| UseStreamingPublishing = this.UseStreamingPublishing | ||
| UseStreamingPublishing = this.UseStreamingPublishing, | ||
| StreamingPublishingMaxClients = this.StreamingPublishingMaxClients, | ||
| NonStreamingPublishingMaxClients = this.NonStreamingPublishingMaxClients | ||
| }; | ||
| } | ||
| } | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.