We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a5e1e86 commit 2c289bbCopy full SHA for 2c289bb
jupyter_server/services/sessions/sessionmanager.py
@@ -28,10 +28,10 @@ class SessionManager(LoggingConfigurable):
28
database_filepath = Unicode(
29
default_value=":memory:",
30
help=(
31
- "Filesystem path to SQLite Database file. Does "
32
- "not write to file by default. :memory: (default) stores the "
33
- "database in-memory and is not persistent beyond "
34
- "the current session."
+ "Th filesystem path to SQLite Database file "
+ "(e.g. /path/to/session_database.db). By default, the session "
+ "database is stored in-memory (i.e. `:memory:` setting from sqlite3) "
+ "and does not persist when the current Jupyter Server shuts down."
35
)
36
).tag(config=True)
37
0 commit comments