D2099: infinitepush: delete the hack to load the extension after remotenames

pulkit (Pulkit Goyal) phabricator at mercurial-scm.org
Fri Feb 9 11:45:43 UTC 2018


pulkit created this revision.
Herald added a subscriber: mercurial-devel.
Herald added a reviewer: hg-reviewers.

REVISION SUMMARY
  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.

REPOSITORY
  rHG Mercurial

REVISION DETAIL
  https://phab.mercurial-scm.org/D2099

AFFECTED FILES
  hgext/infinitepush/__init__.py

CHANGE DETAILS

diff --git a/hgext/infinitepush/__init__.py b/hgext/infinitepush/__init__.py
--- a/hgext/infinitepush/__init__.py
+++ b/hgext/infinitepush/__init__.py
@@ -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):



To: pulkit, #hg-reviewers
Cc: mercurial-devel


More information about the Mercurial-devel mailing list