##// END OF EJS Templates
non-lightweight dashboard mode is now more error proof when it stumbles across bad or damaged repositories
marcink -
r3360:85f69bf8 beta
parent child Browse files
Show More
@@ -106,16 +106,17 b' class CachedRepoList(object):'
106 106 )(dbr.repo_name, 'get repo check'):
107 107 continue
108 108
109 if scmr is None:
109 try:
110 last_change = scmr.last_change
111 tip = h.get_changeset_safe(scmr, 'tip')
112 except Exception:
110 113 log.error(
111 114 '%s this repository is present in database but it '
112 'cannot be created as an scm instance' % dbr.repo_name
115 'cannot be created as an scm instance, org_exc:%s'
116 % (dbr.repo_name, traceback.format_exc())
113 117 )
114 118 continue
115 119
116 last_change = scmr.last_change
117 tip = h.get_changeset_safe(scmr, 'tip')
118
119 120 tmp_d = {}
120 121 tmp_d['name'] = dbr.repo_name
121 122 tmp_d['name_sort'] = tmp_d['name'].lower()
General Comments 0
You need to be logged in to leave comments. Login now