Skip to content

Commit

Permalink
fix: use chunk of 30 tasks to submit
Browse files Browse the repository at this point in the history
  • Loading branch information
aneojgurhem committed Dec 7, 2023
1 parent 7559c6d commit a07c6f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Client/src/Common/Submitter/BaseClientSubmitter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -395,7 +395,7 @@ private IEnumerable<string> ChunkSubmitTasksWithDependencies(IEnumerable<Tuple<s
}
}

foreach (var taskChunk in tasks.ToChunks(50))
foreach (var taskChunk in tasks.ToChunks(30))
{
for (var nbRetry = 0; nbRetry < maxRetries; nbRetry++)
{
Expand Down

0 comments on commit a07c6f9

Please sign in to comment.