From c782935d467f6271f093b38bf1a6ec77c4bb17d4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Javier=20Guardia=20Fern=C3=A1ndez?= Date: Mon, 8 Nov 2021 12:52:48 +0100 Subject: [PATCH] Disable client test instance pooling (#5216) The technology just isn't there yet --- Content.IntegrationTests/ContentIntegrationTest.cs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Content.IntegrationTests/ContentIntegrationTest.cs b/Content.IntegrationTests/ContentIntegrationTest.cs index 738544be80..5fae291766 100644 --- a/Content.IntegrationTests/ContentIntegrationTest.cs +++ b/Content.IntegrationTests/ContentIntegrationTest.cs @@ -184,6 +184,12 @@ namespace Content.IntegrationTests private bool ShouldPool(IntegrationOptions options, bool server) { + // TODO TEST POOLING client pooling + if (!server) + { + return false; + } + if (options.Pool == false) { return false;