Correct calls to super class in RecorderPool (#94923)

This commit is contained in:
Erik Montnemery
2023-06-20 23:26:37 +02:00
committed by GitHub
parent 446a820cbb
commit 863b948e7c

View File

@@ -92,7 +92,7 @@ class RecorderPool(SingletonThreadPool, NullPool): # type: ignore[misc]
exclude_integrations={"recorder"},
error_if_core=False,
)
return super(NullPool, self)._create_connection()
return NullPool._create_connection(self)
class MutexPool(StaticPool):