Disable client test instance pooling (#5216)

The technology just isn't there yet
This commit is contained in:
Javier Guardia Fernández
2021-11-08 12:52:48 +01:00
committed by GitHub
parent 76e7305fc2
commit c782935d46

View File

@@ -184,6 +184,12 @@ namespace Content.IntegrationTests
private bool ShouldPool(IntegrationOptions options, bool server) private bool ShouldPool(IntegrationOptions options, bool server)
{ {
// TODO TEST POOLING client pooling
if (!server)
{
return false;
}
if (options.Pool == false) if (options.Pool == false)
{ {
return false; return false;