Make RobustIntegrationTest pool by default (#5872)

This commit is contained in:
Leon Friedrich
2025-04-20 17:53:55 +10:00
committed by GitHub
parent adf0b6ae78
commit 3ce764311d
37 changed files with 208 additions and 134 deletions

View File

@@ -42,8 +42,8 @@ public class RecursiveMoveBenchmark : RobustIntegrationTest
public void GlobalSetup()
{
ProgramShared.PathOffset = "../../../../";
var server = StartServer();
var client = StartClient();
var server = StartServer(new() {Pool = false});
var client = StartClient(new() {Pool = false});
Task.WhenAll(client.WaitIdleAsync(), server.WaitIdleAsync()).Wait();