Submitter | phabricator |
---|---|
Date | March 30, 2019, 1:49 a.m. |
Message ID | <b0947a7fcb2d6bf2df647bece40dce04@localhost.localdomain> |
Download | mbox | patch |
Permalink | /patch/39414/ |
State | Not Applicable |
Headers | show |
Comments
Patch
diff --git a/hgext/remotefilelog/fileserverclient.py b/hgext/remotefilelog/fileserverclient.py --- a/hgext/remotefilelog/fileserverclient.py +++ b/hgext/remotefilelog/fileserverclient.py @@ -544,7 +544,7 @@ if fetchwarning: self.ui.warn(fetchwarning + '\n') self.logstacktrace() - missingids = [(file, hex(id)) for file, id in missingids] + missingids = [(file, hex(id)) for file, id in sorted(missingids)] fetched += len(missingids) start = time.time() missingids = self.request(missingids)