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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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