We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3950eaa commit 6383515Copy full SHA for 6383515
jupyter_rsession_proxy/__init__.py
@@ -136,7 +136,7 @@ def _get_cmd(port, unix_socket):
136
137
def _get_timeout(default=15):
138
try:
139
- return float(os.getenv('RSERVER_TIMEOUT', default))
+ return float(os.getenv('JUPYTER_RSESSION_PROXY_TIMEOUT', default))
140
except Exception:
141
return default
142
@@ -150,7 +150,7 @@ def _get_timeout(default=15):
150
'icon_path': get_icon_path()
151
}
152
153
- if os.getenv('RSERVER_USE_SOCKET', "") != "":
+ if os.getenv('JUPYTER_RSESSION_PROXY_USE_SOCKET'):
154
server_process['unix_socket'] = True
155
156
return server_process
0 commit comments