Skip to content

Commit

Permalink
Longer delay in WaitForRepoEmptyState
Browse files Browse the repository at this point in the history
  • Loading branch information
rmunn committed May 10, 2024
1 parent 62d40ca commit 8c020b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/LexBoxApi/Services/HgService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,7 @@ public async Task WaitForRepoEmptyState(string code, RepoEmptyState expectedStat
RepoEmptyState.Empty => isEmpty,
RepoEmptyState.NonEmpty => !isEmpty
};
if (!done) await Task.Delay(650);
if (!done) await Task.Delay(2500);
}
}

Expand Down

0 comments on commit 8c020b1

Please sign in to comment.