infinitepush: delete the hack to load the extension after remotenames
authorPulkit Goyal <7895pulkit@gmail.com>
Thu, 08 Feb 2018 17:09:24 +0530
changeset 37190 ecdd8c3044de
parent 37189 b377b7dfe682
child 37191 2fdc827f76ec
infinitepush: delete the hack to load the extension after remotenames The remotenames extension which circumvents the default push implementation lives outside the core, so let's delete logic related to loading of extension on the basis of remotenames ext. Differential Revision: https://phab.mercurial-scm.org/D2099
hgext/infinitepush/__init__.py
--- a/hgext/infinitepush/__init__.py	Sat Feb 03 17:59:49 2018 +0530
+++ b/hgext/infinitepush/__init__.py	Thu Feb 08 17:09:24 2018 +0530
@@ -286,14 +286,6 @@
     if _isserver(ui) and repo.local():
         repo.bundlestore = bundlestore(repo)
 
-def uisetup(ui):
-    # remotenames circumvents the default push implementation entirely, so make
-    # sure we load after it so that we wrap it.
-    order = extensions._order
-    order.remove('infinitepush')
-    order.append('infinitepush')
-    extensions._order = order
-
 def extsetup(ui):
     commonsetup(ui)
     if _isserver(ui):