Correct calls to super class in RecorderPool (#94923)
This commit is contained in:
parent
446a820cbb
commit
863b948e7c
1 changed files with 1 additions and 1 deletions
|
@ -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):
|
||||
|
|
Loading…
Add table
Reference in a new issue