Skip to content

Commit 4632316

Browse files
committed
Default to None for unix_socket option
1 parent 1b84a5e commit 4632316

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

docs/source/server-process.rst

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -114,8 +114,6 @@ pairs.
114114
this path and listen for HTTP requests on it. The ``port`` configuration key
115115
will be ignored.
116116

117-
Defaults to *False*.
118-
119117

120118
``mappath``
121119
^^^^^^^^^^^

jupyter_server_proxy/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ def make_server_process(name, server_process_config, serverproxy_config):
118118
timeout=server_process_config.get('timeout', 5),
119119
absolute_url=server_process_config.get('absolute_url', False),
120120
port=server_process_config.get('port', 0),
121-
unix_socket=server_process_config.get('unix_socket', False),
121+
unix_socket=server_process_config.get('unix_socket', None),
122122
mappath=server_process_config.get('mappath', {}),
123123
launcher_entry=LauncherEntry(
124124
enabled=le.get('enabled', True),

0 commit comments

Comments
 (0)