Skip to content

Commit

Permalink
update help string
Browse files Browse the repository at this point in the history
  • Loading branch information
Zsailer committed Dec 6, 2021
1 parent a5e1e86 commit 2c289bb
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions jupyter_server/services/sessions/sessionmanager.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ class SessionManager(LoggingConfigurable):
database_filepath = Unicode(
default_value=":memory:",
help=(
"Filesystem path to SQLite Database file. Does "
"not write to file by default. :memory: (default) stores the "
"database in-memory and is not persistent beyond "
"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."
)
).tag(config=True)

Expand Down

0 comments on commit 2c289bb

Please sign in to comment.