diff rhodecode/lib/indexers/__init__.py @ 2643:2ad50c44b025 beta

when indexing changesets use the raw_id to locate the point from which to start indexing rather than the revision which can be unreliable.
author Indra Talip <indra.talip@gmail.com>
date Sat, 21 Jul 2012 08:20:32 +0200
parents 88b0e82bcba4
children d5e42c00f3c1
line wrap: on
line diff
--- a/rhodecode/lib/indexers/__init__.py	Sat Jul 21 06:01:32 2012 +0200
+++ b/rhodecode/lib/indexers/__init__.py	Sat Jul 21 08:20:32 2012 +0200
@@ -74,7 +74,6 @@
 
 CHGSETS_SCHEMA = Schema(
     raw_id=ID(unique=True, stored=True),
-    revision=NUMERIC(unique=True, stored=True),
     last=BOOLEAN(),
     owner=TEXT(),
     repository=ID(unique=True, stored=True),