Mercurial > hg
comparison hgext/remotefilelog/remotefilelogserver.py @ 42771:fdeb4c1d23d5
rawdata: update caller in remotefilelog
We update callers incrementally because this help bisecting failures. This was
useful during development, so we expect it might be useful again in the future.
author | Pierre-Yves David <pierre-yves.david@octobus.net> |
---|---|
date | Wed, 07 Aug 2019 22:35:12 +0200 |
parents | 0531dff73d0b |
children | 2372284d9457 |
comparison
equal
deleted
inserted
replaced
42770:af9c591216ea | 42771:fdeb4c1d23d5 |
---|---|
333 if revlogflags == 0: | 333 if revlogflags == 0: |
334 # normal files | 334 # normal files |
335 text = filectx.data() | 335 text = filectx.data() |
336 else: | 336 else: |
337 # lfs, read raw revision data | 337 # lfs, read raw revision data |
338 text = flog.revision(frev, raw=True) | 338 text = flog.rawdata(frev) |
339 | 339 |
340 repo = filectx._repo | 340 repo = filectx._repo |
341 | 341 |
342 ancestors = [filectx] | 342 ancestors = [filectx] |
343 | 343 |