We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f37967b commit 74655ceCopy full SHA for 74655ce
jupyter_server/serverapp.py
@@ -2724,7 +2724,11 @@ def initialize(
2724
self._init_asyncio_patch()
2725
# Parse command line, load ServerApp config files,
2726
# and update ServerApp config.
2727
+ # preserve jpserver_extensions, which may have been set by starter_extension
2728
+ # don't let config clobber this value
2729
+ jpserver_extensions = self.jpserver_extensions.copy()
2730
super().initialize(argv=argv)
2731
+ self.jpserver_extensions.update(jpserver_extensions)
2732
if self._dispatching:
2733
return
2734
# initialize io loop as early as possible,
0 commit comments