Skip to content

Commit

Permalink
fix some concurrent issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Ali-YousefiTelori committed Oct 26, 2023
1 parent f70bb7e commit 6d3a43c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ public async Task ConcurrentCheckSimpleRequestAndResponse(string request, string
var port = await GetHandler(resourceManager).Start();

List<Task<bool>> all = new List<Task<bool>>();
for (int i = 0; i < 100; i++)
for (int i = 0; i < 10; i++)
{
all.Add(Task.Run(async () =>
{
Expand Down

0 comments on commit 6d3a43c

Please sign in to comment.