Mercurial > public > mercurial-scm > hg-stable
diff hgext/lfs/blobstore.py @ 35614:6d6d20658cce
lfs: drop deprecated remote store config options
The last of these were removed from fb-experimental in 86884a51e9aa, and we
might as well clean this up before the freeze.
author | Matt Harbison <matt_harbison@yahoo.com> |
---|---|
date | Fri, 12 Jan 2018 23:13:38 -0500 |
parents | ebf14075a5c1 |
children | 2c6ebd0c850e |
line wrap: on
line diff
--- a/hgext/lfs/blobstore.py Fri Jan 12 18:11:05 2018 +0530 +++ b/hgext/lfs/blobstore.py Fri Jan 12 23:13:38 2018 -0500 @@ -445,22 +445,7 @@ def remote(repo): """remotestore factory. return a store in _storemap depending on config""" - defaulturl = '' - - # convert deprecated configs to the new url. TODO: remove this if other - # places are migrated to the new url config. - # deprecated config: lfs.remotestore - deprecatedstore = repo.ui.config('lfs', 'remotestore') - if deprecatedstore == 'dummy': - # deprecated config: lfs.remotepath - defaulturl = 'file://' + repo.ui.config('lfs', 'remotepath') - elif deprecatedstore == 'git-lfs': - # deprecated config: lfs.remoteurl - defaulturl = repo.ui.config('lfs', 'remoteurl') - elif deprecatedstore == 'null': - defaulturl = 'null://' - - url = util.url(repo.ui.config('lfs', 'url', defaulturl)) + url = util.url(repo.ui.config('lfs', 'url') or '') scheme = url.scheme if scheme not in _storemap: raise error.Abort(_('lfs: unknown url scheme: %s') % scheme)