diff --git a/mercurial/bundle2.py b/mercurial/bundle2.py
index bafa1c4bb7a8d397f62e0cd75b8064ef1375b753_bWVyY3VyaWFsL2J1bmRsZTIucHk=..14b6afc6cb28747fb88f3ca3e63fbdef14f7de78_bWVyY3VyaWFsL2J1bmRsZTIucHk= 100644
--- a/mercurial/bundle2.py
+++ b/mercurial/bundle2.py
@@ -1691,8 +1691,8 @@
     includepats = kwargs.get(r'includepats')
     excludepats = kwargs.get(r'excludepats')
 
-    narrowstream = repo.ui.configbool('experimental.server',
-                                      'stream-narrow-clones')
+    narrowstream = repo.ui.configbool('experimental',
+                                      'server.stream-narrow-clones')
 
     if (includepats or excludepats) and not narrowstream:
         raise error.Abort(_('server does not support narrow stream clones'))
diff --git a/mercurial/configitems.py b/mercurial/configitems.py
index bafa1c4bb7a8d397f62e0cd75b8064ef1375b753_bWVyY3VyaWFsL2NvbmZpZ2l0ZW1zLnB5..14b6afc6cb28747fb88f3ca3e63fbdef14f7de78_bWVyY3VyaWFsL2NvbmZpZ2l0ZW1zLnB5 100644
--- a/mercurial/configitems.py
+++ b/mercurial/configitems.py
@@ -610,7 +610,7 @@
 coreconfigitem('experimental', 'server.manifestdata.recommended-batch-size',
     default=100000,
 )
-coreconfigitem('experimental.server', 'stream-narrow-clones',
+coreconfigitem('experimental', 'server.stream-narrow-clones',
     default=False,
 )
 coreconfigitem('experimental', 'single-head-per-branch',