# HG changeset patch # User Martin von Zweigbergk # Date 1543969380 28800 # Node ID fbd053af2eda078a0f53aea5af86db1b438da375 # Parent ad21fbcb1ba5c819925b1c17c9137ec2ad725381 remotefilelog: use progress helper in remotefilelogserver Differential Revision: https://phab.mercurial-scm.org/D5377 diff -r ad21fbcb1ba5 -r fbd053af2eda hgext/remotefilelog/remotefilelogserver.py --- a/hgext/remotefilelog/remotefilelogserver.py Tue Dec 04 16:09:20 2018 -0800 +++ b/hgext/remotefilelog/remotefilelogserver.py Tue Dec 04 16:23:00 2018 -0800 @@ -388,14 +388,12 @@ days = repo.ui.configint("remotefilelog", "serverexpiration") expiration = time.time() - (days * 24 * 60 * 60) - _removing = _("removing old server cache") - count = 0 - ui.progress(_removing, count, unit="files") + progress = ui.makeprogress(_("removing old server cache"), unit="files") + progress.update(0) for root, dirs, files in os.walk(cachepath): for file in files: filepath = os.path.join(root, file) - count += 1 - ui.progress(_removing, count, unit="files") + progress.increment() if filepath in neededfiles: continue @@ -403,4 +401,4 @@ if stat.st_mtime < expiration: os.remove(filepath) - ui.progress(_removing, None) + progress.complete()