MCPcopy Index your code
hub / github.com/pgadmin-org/pgadmin4 / create_session_interface

Function create_session_interface

web/pgadmin/utils/session.py:487–498  ·  view source on GitHub ↗
(app, skip_paths=[])

Source from the content-addressed store, hash-verified

485
486
487def create_session_interface(app, skip_paths=[]):
488 return ManagedSessionInterface(
489 CachingSessionManager(
490 FileBackedSessionManager(
491 app.config['SESSION_DB_PATH'],
492 app.config['SECRET_KEY'],
493 app.config.get('PGADMIN_SESSION_DISK_WRITE_DELAY', 10),
494 skip_paths
495 ),
496 1000,
497 skip_paths
498 ))
499
500
501def pga_unauthorised():

Callers 1

create_appFunction · 0.90

Calls 4

getMethod · 0.45

Tested by

no test coverage detected