Changeset - c93234e9ac36
[Not reviewed]
beta
0 1 0
Marcin Kuzminski - 15 years ago 2011-04-13 00:39:15
marcin@python-works.com
fixes issue #163 RhodeCode will check and report a corrupted repo. A rescan with destroy old data should be perform after such operations
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
rhodecode/model/scm.py
Show inline comments
 
@@ -139,7 +139,7 @@ class ScmModel(BaseModel):
 
            if r_dbr is not None:
 
                repo, dbrepo = r_dbr
 

	
 
                if repo is None and dbrepo is None:
 
                if repo is None or dbrepo is None:
 
                    log.error('Repository %s looks somehow corrupted', r_name)
 
                    continue
 
                last_change = repo.last_change
0 comments (0 inline, 0 general)