##// END OF EJS Templates
Don't validate the repository when updating/clearing extra info (#19400)....
Jean-Philippe Lang -
r13761:98c28b467b30
parent child
Show More
@@ -209,7 +209,7 class Repository::Git < Repository
209 209 end
210 210 h["heads"] = repo_heads.dup
211 211 merge_extra_info(h)
212 self.save
212 save(:validate => false)
213 213 end
214 214 private :save_revisions
215 215
@@ -251,7 +251,7 class Repository::Git < Repository
251 251 h = {}
252 252 h["extra_report_last_commit"] = v
253 253 merge_extra_info(h)
254 self.save
254 save(:validate => false)
255 255 end
256 256 private :clear_extra_info_of_changesets
257 257
General Comments 0
You need to be logged in to leave comments. Login now