File tree Expand file tree Collapse file tree 2 files changed +5
-0
lines changed Expand file tree Collapse file tree 2 files changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -34,6 +34,7 @@ New features:
34
34
checking the ``Host `` header from the browser (:ghpull: `3714 `).
35
35
This check can be disabled if necessary by setting
36
36
``NotebookApp.allow_remote_access ``.
37
+ (Disabled by default while we work out some Mac issues in :ghissue: `3754 `).
37
38
- Add kernel_info_timeout traitlet to enable restarting slow kernels (:ghpull: `3665 `)
38
39
- Add ``custom_display_host `` config option to override displayed URL (:ghpull: `3668 `)
39
40
- Add /metrics endpoint for Prometheus Metrics (:ghpull: `3490 `)
Original file line number Diff line number Diff line change @@ -852,6 +852,10 @@ def _token_changed(self, change):
852
852
@default ('allow_remote_access' )
853
853
def _default_allow_remote (self ):
854
854
"""Disallow remote access if we're listening only on loopback addresses"""
855
+ # Disable the check temporarily because of Mac issues:
856
+ # https://github.com/jupyter/notebook/issues/3754
857
+ return True
858
+
855
859
try :
856
860
addr = ipaddress .ip_address (self .ip )
857
861
except ValueError :
You can’t perform that action at this time.
0 commit comments