##// END OF EJS Templates
#176 LookupError: 00changelog.i@66f0739d7517: no node...
#176 LookupError: 00changelog.i@66f0739d7517: no node - fixed mercurial concurency bug. While there were many concurrent request to different repos at one time, sometimes there were race conditions that caused mercurial backend to mix up repository instance with current repo path from environ, a major rewrite of the middleware fixed that.

File last commit:

r1431:d5d7c40e beta
r1495:5bd42279 beta
Show More
changelog_details.html
8 lines | 800 B | text/html | HtmlLexer
changelog uses lazy loading of affected files details, in some scenarios this can improve speed...
r1431 % if len(c.cs.affected_files) <= c.affected_files_cut_off:
<span class="removed tooltip" title="<b>${_('removed')}</b>${h.changed_tooltip(c.cs.removed)}">${len(c.cs.removed)}</span>
<span class="changed tooltip" title="<b>${_('changed')}</b>${h.changed_tooltip(c.cs.changed)}">${len(c.cs.changed)}</span>
<span class="added tooltip" title="<b>${_('added')}</b>${h.changed_tooltip(c.cs.added)}">${len(c.cs.added)}</span>
% else:
<span class="removed tooltip" title="${_('affected %s files') % len(c.cs.affected_files)}">!</span>
<span class="changed tooltip" title="${_('affected %s files') % len(c.cs.affected_files)}">!</span>
<span class="added tooltip" title="${_('affected %s files') % len(c.cs.affected_files)}">!</span>
% endif