MCPcopy Create free account
hub / github.com/sqlalchemy/sqlalchemy / recreate

Method recreate

lib/sqlalchemy/pool/impl.py:309–321  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

307 return self._create_connection()
308
309 def recreate(self) -> NullPool:
310 self.logger.info("Pool recreating")
311
312 return self.__class__(
313 self._creator,
314 recycle=self._recycle,
315 echo=self.echo,
316 logging_name=self._orig_logging_name,
317 reset_on_return=self._reset_on_return,
318 pre_ping=self._pre_ping,
319 _dispatch=self.dispatch,
320 dialect=self._dialect,
321 )
322
323 def dispose(self) -> None:
324 pass

Callers

nothing calls this directly

Calls 1

infoMethod · 0.45

Tested by

no test coverage detected